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、

 

posted @ 2021-04-21 13:58  小鲨鱼2018  阅读(191)  评论(0编辑  收藏  举报