|
发表于 2010-7-5 08:27:03
|
显示全部楼层
Post by gradysp;2101125
请问,当用户输入回车键时,shell如何获取该回车键?我尝试了使用read,但好像没成功。
[html]
echo "Enter your choice: [y/n]"
read input
echo "your choice is: "
[/html]
当用户直接输入回车,如何使其效果跟输入Y一样?
read -p "Enter your choie: [y/n]" input
a=${input:=y}
echo "your choice is: $a" |
|