您的位置:首页 > 教育 > 锐评 > SHELL脚本学习(五)用户输入

SHELL脚本学习(五)用户输入

2024/10/31 9:51:08 来源:https://blog.csdn.net/weixin_37703001/article/details/139534906  浏览:    关键词:SHELL脚本学习(五)用户输入
获取用户输入
1、基本的读取

read命令从标准或其他文件描述符读取数据,获取输入后,read命令将值存入变量中。
命令格式:

read variable
选项-p:提示信息

#!/usr/bin/bash
read -p "Enter your name:" name
echo hello $name
~$ ./test.sh
Enter your name:lintao
hello lintao
2、超时
使用read命令时要小心,脚本可能一直停在read命令处。如果不管是否有数据输入脚本都要继续执行,则 
可以使用-t选项,后面跟要等待的秒数
#!/usr/bin/bash
if read -t 5 -p "Enter your name:" name
thenecho hello $name
elseecho null 
fi
~$ ./test.sh
Enter your name:null
~$ ./test.sh
Enter your name:lintao
hello lintao
3、无显示读取
有时想要从脚本用户处得到输入,又不想显示在屏幕上。这时可以使用 -s选项
#!/usr/bin/bash
if read -s -p "Enter your password:" passwd
thenecho " ";echo passeord=$passwd;
elseecho null 
fi
~$ ./test.sh
Enter your password: 
passeord=123456
4、从文件中读取

下面两种方式实现输出文件自身的内容。

1、通过cat命令和管道读取
#!/usr/bin/bash
cat ./test.sh| while read line
doecho $line
done 
2、通过输入重定向读取
#!/usr/bin/bash
while read line
doecho $line
done < ./test.sh
实战演练

检查文件中的 IP列表 是否能连通

#!/usr/bin/bashecho scrip name is $(basename $0)# 输入文件名while read -p "input file path: " filenamedo# 文件名为空 或者 是 quit 则退出if [ -z $filename ] || [ $filename = quit ]thenecho exitbreakfiif [ -e $filename ]thencat $filename | while read ipdoecho ip : $ip ping -c 3 $ipdoneelseecho file $filename not existsfidoneecho end

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com