码迷,mamicode.com
首页 > 系统相关 > 详细

linux 系统中read命令

时间:2021-04-22 15:41:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgba   roo   code   font   16px   NPU   设置   参数   set   

 

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、

 

linux 系统中read命令

标签:rgba   roo   code   font   16px   NPU   设置   参数   set   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!