xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

how to write string to file in linux bash All In One

how to write string to file in linux bash All In One

how to write string to file in bash

https://stackoverflow.com/questions/22713667/shell-script-how-to-write-a-string-to-file-and-to-stdout-on-console

echo

https://linux.die.net/man/1/echo

$ touch readme.md

# 追加 >>
$ echo "hello world" >> readme.md

# 覆盖 >
$ echo "hello world" > readme.md


tee

https://linux.die.net/man/1/tee

# tee
$ echo "hello  world" | tee readme.md

$ tee readme.md <<< "hello world"

refs



©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @ 2020-05-06 22:32  xgqfrms  阅读(162)  评论(3编辑  收藏  举报