linux基础篇-11,IO重定向和管道
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux基础篇-11,IO重定向和管道相关的知识,希望对你有一定的参考价值。
################################################
>:覆盖输出
》追加输出
set -c :禁止覆盖
set +c:关闭禁用覆盖
################################################
2>:重定向错误覆盖
2》:重定向错误追加输出
################################################
&>:错误正确都重定向到一个文件
[[email protected] testcp]# ls /homes &> /tmp/t1.txt ls /home&> /tmp/t1.txt
[[email protected] testcp]# cat /tmp/t1.txt
ls: 无法访问/homes: 没有那个文件或目录
ls: 无法访问ls: 没有那个文件或目录
/home:
james
jameszhan
Jameszhan
lost+found
newtest
testcp
[[email protected] testcp]# vim /tmp/t1.txt
ls: 无法访问/homes: 没有那个文件或目录
ls: 无法访问ls: 没有那个文件或目录
/home:
james
jameszhan
Jameszhan
lost+found
newtest
testcp
################################################
<:输入重定向
《:Here Document
################################################
管道
命令1 | 命令2 | 命令3 | ...
tee:把标准输入的内容保存到文件中,并标准输出到屏幕
[[email protected] testcp]# echo ‘hello‘ | tee /tmp/hello.txt
hello
[[email protected] testcp]# cat /tmp/hello.txt
hello
[[email protected] testcp]# wc -l /etc/passwd | cut -d ‘ ‘ -f1
32
本文出自 “James zhan Linux高级运维” 博客,请务必保留此出处http://jameszhan.blog.51cto.com/10980469/1875539
以上是关于linux基础篇-11,IO重定向和管道的主要内容,如果未能解决你的问题,请参考以下文章