[原创]bash shell必须掌握的命令--read命令
时间:2010-11-30 来源:nianzong
-u fd Read input from file descriptor fd.
-u [ n ] 读取一位数的文件描述符号码 n 作为输入。文件描述符可以用 ksh exec 内置命令打开。n 的缺省值是 0,表示的是键盘。值 2 表示标准错误。
-s Silent mode. If input is coming from a terminal, characters are not echoed.
举例: read -s line < input_file
# read a b c
sldf sdf er2
[root@vm57-120 ~]# echo $a $b $c
sldf sdf er2
sldf sdf er2
[root@vm57-120 ~]# echo $a $b $c
sldf sdf er2
相关阅读 更多 +