shell输入输出重定向
Posted 狼太白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell输入输出重定向相关的知识,希望对你有一定的参考价值。
标准输入:0 < , <<或者0< 0<<
标准输出:1 >,>> 或者1>,1>>
错误输出:2 2>>,2>
/dev/null 这个设备,是linux 中黑洞设备,什么信息只要输出给这个设备,都会给吃掉
$
ls
test
.sh test1.sh >
/dev/null
2>&1
//错误输出直接被写在标准输出中,即在终端上屏幕显示。
:~$ ls -yz 2>&1
ls: invalid option -- ‘y‘
Try ‘ls --help‘ for more information.
//错误输出会被输出到标准输出,即屏幕显示,而不会写在fname文件中。
:~$ ls -yz 2>&1 1>fname
ls: invalid option -- ‘y‘
Try ‘ls --help‘ for more information.
:~$ ls
androidStudioProjects Desktop Documents Downloads examples.desktop fname Music Pictures Public Templates usr Videos work
:~$ cat fname
//标准输出会写在fname文件中,错误输出会被输出到标准输出中,即文件fname中。
:~$ ls -yz 1>fname 2>&1
:~$ ls
AndroidStudioProjects Desktop Documents Downloads examples.desktop fname Music Pictures Public Templates usr Videos work
:~$ cat fname
ls: invalid option -- ‘y‘
Try ‘ls --help‘ for more information.
以上是关于shell输入输出重定向的主要内容,如果未能解决你的问题,请参考以下文章