Linux命令-read

巧了我就是萌 提交于 2019-12-02 18:27:33
[chenjl@ipha-dev71-1 yysoft]$ read -p "check run the script is the mysql server? (y/n) " choice
check run the script is the mysql server? (y/n) y
[chenjl@ipha-dev71-1 yysoft]$ echo $choice
y

详细解释:

p是prompt的缩写,指提示信息

read -p "check run the script is the mysql server? (y/n) " choice

以上命令回车后会显示 check run the script is the mysql server? (y/n)

之后用户输入的内容会被保存到choice变量中

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!