$ echo 'hoge' > sample.txt
$ echo 'hoge' >> sample.txt
$ echo -e "aaa\nbbb\nccc" > sample.txt or $ echo -e aaa\\nbbb\\nccc > sample.txt
Recommended Posts