4.1.2.9 linux文件管理 :文件属性操作 :文件内容 :重定向
常用命令
> ##改变标准输出
< ##改变标准输入
>> ##追加文件
| ##cmd1 | cmd2 把cmd1输出和cmd2输入相连
> 改变标准输出
cmd > file 把标准输出重定向到文件当中
$ echo "hello world" > 2.txt
$ cat 2.txt
hello world
< 改变标准输入
cmd < file 把标准输入修改为file
$ cat < 2.txt
hello world
$ cat < 2.txt > 3.txt
$ cat < 3.txt
hello world
>> 追加文件
cmd >> file 把输出追加到文件当中
$ cat 3.txt
hello world
$ echo "add" >> 3.txt
$ cat 3.txt
hello world
add
| 管道连接
cmd1 | cmd2 把cmd1输出和cmd2输入相连
$ cat < 1.txt
1
2
3
$ cat < 1.txt | grep -e 1 -e 3
1
3