0027read命令

Posted linux777

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0027read命令相关的知识,希望对你有一定的参考价值。

#read命令从控制台读取数据赋值
[[email protected] ~]# read a b
ab dc
[[email protected] ~]# echo $a
ab
[[email protected] ~]# echo $b
dc

        #结合echo使用
        echo -n "enter a name:" ; read name
        [[email protected] ~]# echo -n "enter a name:" ; read name
enter a name:jsdfl 
[[email protected] ~]# echo $name
jsdfl
        
        #-p 替代echo输出,-t设置过期时间
        read -p ‘enter a user name:‘ name
        read -p ‘enter a user name:‘ -t 5 name

        #给默认值
        [ -z "$name" ] && name=‘washington‘


















以上是关于0027read命令的主要内容,如果未能解决你的问题,请参考以下文章

docker

docker

Linux Shell基础 read命令

如何使用linux read命令

shell read 命令 (转)

linux 中 read 命令是啥意思