我想在
shell脚本中创建一个poll:
回声“1 – 你叫什么名字?”
读名字
回声“你的名字是$name”
回声“2 – 你的国家是什么?”
阅读国家
回声“你的国家是$country”
…
…等等…
…
谢谢!我一直在等待可能的答案!
这是如何知道用户是否选择了escape:
原文链接:https://www.f2er.com/bash/383449.htmlread -s -n1 key case $key in $'\e') echo "Escape";; esac