Shell 模板 (Yes or NO)

Posted xyarn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell 模板 (Yes or NO)相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#Judge Yes or No!
#Author yarn
#Date 2018-9-7 09:07:14
########################
read -p "Please input Yes or No:" anw
case $anw in
[Yy][Ee][Ss]|[yY])
echo yes!
;;
[Nn][Oo]|[Nn])
echo no!
;;
esac

 

以上是关于Shell 模板 (Yes or NO)的主要内容,如果未能解决你的问题,请参考以下文章

linux arm 运行 shell .sh 脚本文件报错:/bin/bash^M: bad interpreter: No such file or directory(dos2unix )(代码片

shell的部分习题(持续更新)

ChatGPT:YES or NO?

012-Shell 提示确认(Y / N,YES / NO)

linux 的shell怎么得到函数返回值?

nginx: [error] open() "/var/run/nginx/nginx.pid" failed (2: No such file or directory)(代码片