################################################
>:覆盖输出
》追加输出
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