「CentOS入門」テキストをファイルに書き出すサンプル
1.テキストをファイルに書き出す
# echo '12345678’ > example.txt
# cat example.txt
12345678
2.ファイルの中身を空にする
# echo " > example.txt
# cat example.txt
3.テキストを追記する
# echo 'hello world’ >> example.txt
# cat example.txt
12345678
hello world