重定向:
> 将标准输出重定向到文件(覆盖),如 echo "wudi" > outfile
>> 将标准输出重定向到文件(追加到后面),如 echo "jiaying" >> outfile
2> 将标准错误重定向到文件(覆盖)
2>&1 将标准输出和标准错误结合
< 重定向标准输入,如 grep root < /etc/passwd/,在passwd文件中查找含有关键字为root的行
管道:
| 将一个命令的标准输出作为另一个命令的标准输入
如 ll | grep yum ,在ll的输出中查找含有yum关键字的行
find / -user root | grep video,查找跟分区下用户名为root,含有video的文件