linux 系统中read命令

1、read从键盘读入

[root@centos7 test]# echo $a

[root@centos7 test]# read a
123456
[root@centos7 test]# echo $a
123456

2、-p 参数  加入提示

[root@centos7 test]# unset a
[root@centos7 test]# echo $a

[root@centos7 test]# read -p "input an integer: " a
input an integer: 87
[root@centos7 test]# echo $a
87

3、-t 设置时间

[root@centos7 test]# echo $a

[root@centos7 test]# read -t 3 a    ## 设置三秒输入时间
[root@centos7 test]# echo $a

判断语句:

#!/bin/bash
if read -t 5 -p "please input an integer: " a
then
        echo "you head input $a"
else
        echo -e "\ntime over."
fi

4、

原文地址:https://www.cnblogs.com/liujiaxin2018/p/14684950.html