Linux 重定向与管道
标准输出重定向
">" 操作符:覆盖目标文件内容
huey@huey-K42JE:~/huey/linux/cmdline$ date > foo huey@huey-K42JE:~/huey/linux/cmdline$ cat foo Fri May 8 09:55:42 CST 2015
">>" 操作符:在目标文件尾部追加输出内容
huey@huey-K42JE:~/huey/linux/cmdline$ date >> foo huey@huey-K42JE:~/huey/linux/cmdline$ cat foo Fri May 8 09:55:42 CST 2015 Fri May 8 09:57:02 CST 2015
标准错误重定向
"2>" 操作符:覆盖目标文件内容
huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir 2> ls-error.txt huey@huey-K42JE:~/huey/linux/cmdline$ cat ls-error.txt ls: cannot access inexistent_dir: No such file or directory
"2>>" 操作符:在目标文件尾部追加输出内容
huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir 2>> ls-error.txt huey@huey-K42JE:~/huey/linux/cmdline$ cat ls-error.txt ls: cannot access inexistent_dir: No such file or directory ls: cannot access inexistent_dir: No such file or directory
将标准输出与标准错误重定向到同一文件
"&>" 操作符:覆盖目标文件内容
huey@huey-K42JE:~/huey/linux/cmdline$ date &> foo huey@huey-K42JE:~/huey/linux/cmdline$ cat foo Fri May 8 10:16:12 CST 2015 huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir &> foo huey@huey-K42JE:~/huey/linux/cmdline$ cat foo ls: cannot access inexistent_dir: No such file or directory
"&>>" 操作符:在目标文件尾部追加输出内容
huey@huey-K42JE:~/huey/linux/cmdline$ echo ‘hello world‘ > foo huey@huey-K42JE:~/huey/linux/cmdline$ date &>> foo huey@huey-K42JE:~/huey/linux/cmdline$ ls inexistent_dir &>> foo huey@huey-K42JE:~/huey/linux/cmdline$ cat foo hello world Fri May 8 10:25:24 CST 2015 ls: cannot access inexistent_dir: No such file or directory
标准输入重定向
"<" 操作符
huey@huey-K42JE:~/huey/linux/cmdline$ echo ‘hello world‘ > foo huey@huey-K42JE:~/huey/linux/cmdline$ cat < foo hello world
管道
"|" 操作符
huey@huey-K42JE:~/huey/linux/cmdline$ ls /usr/bin | grep ‘^zip‘ zip zipcloak zipgrep zipinfo zipnote zipsplit
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。