输出重定向
shell
# echo 是打印内容 输出重定向,将123写进1.txt文件中
[root@localhost ~]# echo 123 > 1.txt
# 将services文件的前5行写进1.txt中
[root@localhost ~]# head -5 services > 1.txt
注意:输出重定向会先清空文件的内容,再进行写入
# >> 追加输出,不会清空文件内容
[root@localhost ~]# head -5 services >> 1.txt
# 标准正确输出与标准错误输出
# 如果前面的指令正确,就会将正确的内容写进1.txt,如果错误,就会将报错信息写进2.txt中
[root@localhost ~]# head -5 services 1>1.txt 2>2.txt
# 清空指定文件
[root@localhost ~]# >1.txt
输入重定向
极少使用
shell
[root@localhost ~]# cat < 1.txt