相关内容:
fd
<
2>
/dev/null
如何多文件重定向?使用tee
fd(file descriptor 文件描述符)
打开的文件都有一个fd
在/proc/PID/fd
特殊的文件描述符
0 STDIN标准输入,默认来自键盘输入
1 STDOUT标准输出,输出到终端窗口 (默认)
2 STDERR标准错误,默认输出到终端窗口
IO重定向,改变标准IO的输入输出方向
标准输出重定向
[root@centos7 test11]#ls > /dev/pts/2
[root@centos7 test11]#ls > /data/ls_test.out
标准错误重定向 2>
[root@centos7 test11]#cmd 2> /data/err.out
输出和错误都放同一个文件里 >& 或者 &>
[root@centos7 t2018-07-25]#ls hhh/ eee > all.out 2>&1
[root@centos7 t2018-07-25]#ls hhh/ eee >& all.out
ps:
如果是同一个重定向文件,则是覆盖该文件
set -C 可以禁止覆盖
w >| ls.log 强行覆盖
set +C 可以覆盖
在该文件后追加重定向信息
多个命令重定向
[root@centos7 ~]#(ls;pwd) > all.log
/dev/null 类似黑洞,吸收消化屏幕的信息到这里,不显示,不做任何提示
错误信息进入了/dev/null,不显示任何错误信息
来源:CSDN
作者:qq_28674411
链接:https://blog.csdn.net/qq_28674411/article/details/104589731