作者:找前辈网 | 来源:互联网 | 2023-10-11 19:35
下面脚本里第三选择想实现返回echo选择yes/no,用了whiletrue;do,retrun0虽然能实现功能,但是一直报错return:canonly`retur
下面脚本里第三选择想实现返回 echo "选择yes/no" ,用了while true;do ,retrun 0 虽然能实现功能,但是一直报错 return: can only `return' from a function or sourced script, help!!!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| #!/bin/bash
echo "选择yes/no"
read chooise
case $chooise in
yes)
echo "1111"
;;
no)
exit 0
;;
*)
echo "重新选择"
;;
esac |