码迷,mamicode.com
首页 > 其他好文 > 详细

“echo >”和“echo >>”的区别

时间:2020-06-17 20:15:05      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:字符   tmp   hello   目录   定向   href   from   内容替换   log   

> 输出重定向

>> 输出追加重定向

---------------------------------------------------------------------------------------------------------------------

echo hello A

将字符串hello A输出到屏幕

---------------------------------------------------------------------------------------------------------------------

echo hello A > tmp.txt

将字符串输出重定向,当前目录没有tmp.txt,则创建tmp.txt,并将字符串输出到tmp.txt文件中

tmp.txt内容:hello A

---------------------------------------------------------------------------------------------------------------------

echo hello B > tmp.txt

将字符串输出重定向, 当前目录存在tmp.txt,则将tmp.txt内容替换成输出的字符串

tmp.txt内容:hello B

---------------------------------------------------------------------------------------------------------------------

echo hello C >> tmp.txt

将字符串输出追加重定向,当前目录存在tmp.txt,则将tmp.txt的内容后面追加输出的字符串

tmp.txt内容:hello B hello C

copy from https://www.cnblogs.com/singeryoung/p/9554551.html

“echo >”和“echo >>”的区别

标签:字符   tmp   hello   目录   定向   href   from   内容替换   log   

原文地址:https://www.cnblogs.com/jetqiu/p/13154145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!