您的位置:首页 > 运维架构 > Linux

Linux - 重定向与管道

2015-05-08 22:23 357 查看

标准输出重定向

">" 操作符:覆盖目标文件内容

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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: