我正在尝试将 case 语句放在另一个这样的 case 语句中并拥有它,以便用户可以根据需要返回到第一个 case 语句
read choice
case $choice in
1)
read pattern
case $pattern in
pattern1)
Statement()
;;
pattern2)
Statement(return to the first case)
;;
*)
echo "Error"
;;
esac
;;
2)
echo "test"
;;
3)
break
;;
*)
echo "error"
;;
esac
类似于以下内容: