其他分享
首页 > 其他分享> > 读取键盘输入

读取键盘输入

作者:互联网

read命令接收标准输入(键盘)的输入,或其他文件描述符的输入(后面在说)。得到输入后,read命令将数据放入一个标准变量中。

常用的参数:

参数作用
-p提示语句
-t等待时间
-s不回显
#脚本
[dps@ccod131 bak]$ cat read.sh 
#!/bin/bash

read -p "please input:" name
echo "$name"
#执行效果
[dps@ccod131 bak]$ bash read.sh 
please input:zhangaj
zhangaj
# 脚本
[dps@ccod131 bak]$ cat read.sh 
#!/bin/bash

read -p "please input:" -s name
echo 
echo "$name"
# 执行效果
[dps@ccod131 bak]$ bash read.sh 
please input:
zhang
#脚本
[dps@ccod131 bak]$ cat read.sh 
#!/bin/bash

read -p "please input:"  name age 
echo 
echo "name:$name,age:$age"

#执行效果
[dps@ccod131 bak]$ vim read.sh
[dps@ccod131 bak]$ bash read.sh 
please input:zhangaj 25 女      

name:zhangaj,age:25 女
#脚本
[dps@ccod131 bak]$ cat read.sh 
#!/bin/bash

read -p "please input:" 
echo 
echo "$REPLY"
#执行效果
[dps@ccod131 bak]$ bash read.sh 
please input:hello

hello

参考链接:http://man.linuxde.net/read

标签:dps,读取,read,please,键盘输入,sh,input,ccod131
来源: https://blog.csdn.net/jjt_zaj/article/details/113104954