What output will echo > produce?

后端 未结 2 1264
無奈伤痛
無奈伤痛 2021-01-23 11:16

I don\'t have a linux at hand and instead use compileonline.com to check out some code in bash, yet I\'m new to bash. Could somebody give a hand?

for var
do echo         


        
2条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-23 11:40

    > always overwrites.

    Writing a new line would be achieved by using the “append” redirection operator >>.

提交回复
热议问题