Linux笔记(10)Linux中的>与>>命令

2021/11/28 7:10:41

本文主要是介绍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]# 


这篇关于Linux笔记(10)Linux中的>与>>命令的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程