linux 系统中read命令

时间:2021-04-22 15:41:37   收藏:0   阅读:0

 

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、

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!