Linux笔记(10)Linux中的>与>>命令
作者:互联网
> 输出重定向 :将本来在屏幕上的输出重定向保存到文件里 --》乾坤大挪移
如果文件不存在就新建,如果文件存在就覆盖原来文件里的内容
>> 追加输出重定向: 将本来在屏幕上的输出重定向保存到文件里
如果文件不存在就新建,如果文件存在不覆盖原来文件里的内容,只是在末尾追加
[root@localhost lianxi]# echo 123456
123456
[root@localhost lianxi]# echo 123456 >1.txt
[root@localhost lianxi]# ls
1.txt backup.sh filename.txt
[root@localhost lianxi]# cat 1.txt
123456
[root@localhost lianxi]# echo 12345678 >1.txt
[root@localhost lianxi]# cat 1.txt
12345678
[root@localhost lianxi]# echo 123123 >>1.txt
[root@localhost lianxi]# cat 1.txt
12345678
123123
[root@localhost lianxi]# echo 123123 >>1.txt
[root@localhost lianxi]# cat 1.txt
12345678
123123
123123
[root@localhost lianxi]#
标签:10,123123,lianxi,笔记,echo,Linux,txt,root,localhost 来源: https://blog.csdn.net/weixin_49750432/article/details/121584750