linux中>和>>的区别
本文编写的目的是为了,方便自己日后查看。
‘>‘ 输出到文件中。文件不存在会创建。文件已存在,内容会被覆盖。文件时间会更新。
第一次输入‘> test‘, 第二次输入‘> test again‘, 发现内容
[ ~]# echo ‘> test‘ > echo.log [ ~]# ll 总用量 8 -rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg -rw-r--r-- 1 root root 7 2月 1 18:03 echo.log [ ~]# cat echo.log > test [ ~]# echo ‘> test again‘ > echo.log [ ~]# cat echo.log > test again [ ~]# ll 总用量 8 -rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg -rw-r--r-- 1 root root 13 2月 1 18:04 echo.log
最后输出只有:‘> test again‘
删除echo.log, 测试‘>>‘
‘>>‘输出到文件中。文件不存在会创建。文件已存在,内容会继续追加在后面。文件时间会更新。
[ ~]# rm echo.log rm:是否删除普通文件 "echo.log"?y [ ~]# ll 总用量 4 -rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg [ ~]# echo ‘> test‘ >> echo.log [ ~]# ll 总用量 8 -rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg -rw-r--r-- 1 root root 7 2月 1 18:11 echo.log [ ~]# cat echo.log > test [ ~]# echo ‘> test again‘ >> echo.log [ ~]# ll 总用量 8 -rw-------. 1 root root 1555 8月 20 15:30 anaconda-ks.cfg -rw-r--r-- 1 root root 20 2月 1 18:12 echo.log [ ~]# cat echo.log > test > test again
最后输出,文本中有两行。> test > test again
相关推荐
敏敏张 2020-11-11
SCNUHB 2020-11-10
小木兮子 2020-11-11
wwwsurfphpseocom 2020-10-28
WasteLand 2020-10-18
Cocolada 2020-11-12
杜鲁门 2020-11-05
shirleypaddy 2020-10-19
qingmumu 2020-10-19
Testingba工作室 2020-09-15
周公周金桥 2020-09-13
专注前端开发 2020-08-16
emagtestage 2020-08-16
heniancheng 2020-08-15
hanjinixng00 2020-08-12
小方哥哥 2020-08-09
83327712 2020-07-30
卖小孩的咖啡 2020-07-21
wqiaofujiang 2020-07-05