日期:2014-05-16  浏览次数:20712 次

Linux提示用户输入并获取输入信息
#!/bin/bash
#testing the read command
echo -n "enter your key: "
read key
echo "hello $key ,welcome to my program."