linux shell下常用输入输出操作符是:
1. 标准输入 (stdin) :代码为 0 ,使用 < 或 << ; /dev/stdin -> /proc/self/fd/0 0代表:/dev/stdin
2. 标准输出 (stdout):代码为 1 ,使用 > 或 >> ; /dev/stdout -> /proc/self/fd/1 1代表:/dev/stdout
3. 标准错误输出(stderr):代码为 2 ,使用 2> 或 2>> ; /dev/stderr -> /proc/self/fd/2 2代表:/dev/stderr
- 输出重定向:
格式:
command-line1 [1-n] > file或文件操作符或设备
上面命令意思是:将一条命令执行结果(标准输出,或者错误输出,本来都要打印到屏幕上面的) 重定向其它输出设备(文件,打开文件操作符,或打印机等等)1,2分别是标准输出,错误输出。
实例:
12
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#显示当前目录文件 test.sh test1.sh test1.sh实际不存在
[[email protected] shell]$
ls
test
.sh test1.sh
ls
: test1.sh: 没有这个文件和目录
test
.sh
#正确输出与错误输出都显示在屏幕了,现在需要把正确输出写入suc.txt
# 1>可以省略,不写,默认所至标准输出
[[email protected] shell]$
ls
test
.sh test1.sh 1>suc.txt
ls
: test1.sh: 没有这个文件和目录
[[email protected] shell]$
cat
suc.txt
test
.sh
#把错误输出,不输出到屏幕,输出到err.txt
[[email protected] shell]$
ls
test
.sh test1.sh 1>suc.txt 2>err.txt
[[email protected] shell]$
cat
suc.txt err.txt
test
.sh
ls
: test1.sh: 没有这个文件和目录
#继续追加把输出写入suc.txt err.txt “>>”追加操作符
[[email protected] shell]$
ls
test
.sh test1.sh 1>>suc.txt 2>>err.txt
#将错误输出信息关闭掉
[[email protected] shell]$
ls
test
.sh test1.sh 2>&-
test
.sh
[[email protected] shell]$
ls
test
.sh test1.sh 2>
/dev/null
test
.sh
#&[n] 代表是已经存在的文件描述符,&1 代表输出 &2代表错误输出 &-代表关闭与它绑定的描述符
#/dev/null 这个设备,是linux 中黑洞设备,什么信息只要输出给这个设备,都会给吃掉
#关闭所有输出
[[email protected] shell]$
ls
test
.sh test1.sh 1>&- 2>&-
#关闭 1 ,2 文件描述符
[[email protected] shell]$
ls
test
.sh test1.sh 2>
/dev/null
1>
/dev/null
#将1,2 输出转发给/dev/null设备
[[email protected] shell]$
ls
test
.sh test1.sh >
/dev/null
2>&1
#将错误输出2 绑定给 正确输出 1,然后将 正确输出 发送给 /dev/null设备 这种常用
<p>[[email protected] shell]$
ls
test
.sh test1.sh &>
/dev/null
#& 代表标准输出 ,错误输出 将所有标准输出与错误输出 输入到/dev/null文件
<
/p
>
注意:
1、shell遇到”>”操作符,会判断右边文件是否存在,如果存在就先删除,并且创建新文件。不存在直接创建。 无论左边命令执行是否成功。右边文件都会变为空。
2、“>>”操作符,判断右边文件,如果不存在,先创建。以添加方式打开文件,会分配一个文件描述符[不特别指定,默认为1,2]然后,与左边的标准输出(1)或错误输出(2) 绑定。
3、当命令:执行完,绑定文件的描述符也自动失效。0,1,2又会空闲。
4、一条命令启动,命令的输入,正确输出,错误输出,默认分别绑定0,1,2文件描述符。
5、一条命令在执行前,先会检查输出是否正确,如果输出设备错误,将不会进行命令执行
- 输入重定向
格式:
command-line [n] <file或文件描述符&设备
将然有,命令默认从键盘获得的输入,改成从文件,或者其它打开文件以及设备输入。执行这个命令,将标准输入0,与文件或设备绑定。将由它进行输入。
实例:
12
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[[email protected] shell]
# cat > catfile
testing
cat
file
test
#这里按下 [ctrl]+d 离开
#从标准输入【键盘】获得数据,然后输出给catfile文件
[[email protected] shell]$
cat
>catfile <
test
.sh
#cat 从test.sh 获得输入数据,然后输出给文件catfile
[[email protected] shell]$
cat
>catfile <<eof
test
a
file
test
!
eof
#<< 这个连续两个小符号, 他代表的是『结束的输入字符』的意思。这样当空行输入eof字符,输入自动结束,不用ctrl+D
- exec绑定重定向
格式:
exec 文件描述符[n] <或> file或文件描述符或设备
在上面讲的输入,输出重定向 将输入,输出绑定文件或设备后。只对当前那条指令是有效的。如果需要在绑定之后,接下来的所有命令都支持的话。就需要用exec命令
实例:
12
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[[email protected] shell]$
exec
6>&1
#将标准输出与fd 6绑定
[[email protected] shell]$
ls
/proc/self/fd/
0 1 2 3 6
#出现文件描述符6
[[email protected] shell]$
exec
1>suc.txt
#将接下来所有命令标准输出,绑定到suc.txt文件(输出到该文件)
[[email protected] shell]$
ls
-al
#执行命令,发现什么都不返回了,因为标准输出已经输出到suc.txt文件了
[[email protected] shell]$
exec
1>&6
#恢复标准输出
[[email protected] shell]$
exec
6>&-
#关闭fd 6描述符
[[email protected] ~]$
ls
/proc/self/fd/
0 1 2 3
说明:使用前先将标准输入保存到文件描述符6,这里说明下,文件描述符默认会打开0,1,2 还可以使用自定义描述符 。然后对标准输出绑定到文件,接下来所有输出都会发生到文件。 使用完后,恢复标准的输出,关闭打开文件描述符6。
有趣事情:
可能有朋友会这样用:exec 1>suc.txt ,接下来所有输出都绑定到suc.txt 文件,那么怎么样恢复原来的呢? 试试你就会发现问题所在……
- 复杂一点实例
12
3
4
5
6
7
8
9
10
11
exec
3<>
test
.sh;
#打开test.sh可读写操作,与文件描述符3绑定
while
read
line<&3
do
echo
$line;
done
#循环读取文件描述符3(读取的是test.sh内容)
exec
3>&-
exec
3<&-
#关闭文件的,输入,输出绑定