当前位置: 技术问答>linux和unix
Linux 新人 寻求帮助~
来源: 互联网 发布时间:2016-04-10
本文导语: 大家好 我初学Linux最近 有很多地方困扰着 其中一个就是 比如这样的一个script echo -n "selection:" read selection case $selection in [Qq]) echo "bye" exit ;; ...
大家好 我初学Linux最近 有很多地方困扰着 其中一个就是
比如这样的一个script
echo -n "selection:"
read selection
case $selection in
[Qq]) echo "bye"
exit
;;
[1]) echo "search"
...
...
[2]) echo "add record"
echo -n "phone number:"
read phonenum
...
...
echo -n "name:"
...
...
echo -n "Add another? Y or N:"
read YN
case $YN in
[Nn]) ;;
[Yy]) 我要输入什么才能重复执行 CASE 2 这个选项 又回到Add record 这里
比如这样的一个script
echo -n "selection:"
read selection
case $selection in
[Qq]) echo "bye"
exit
;;
[1]) echo "search"
...
...
[2]) echo "add record"
echo -n "phone number:"
read phonenum
...
...
echo -n "name:"
...
...
echo -n "Add another? Y or N:"
read YN
case $YN in
[Nn]) ;;
[Yy]) 我要输入什么才能重复执行 CASE 2 这个选项 又回到Add record 这里
|
2