获取用户输入
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