問題
「test.txt」に「Hello, world!」という文字列を追加してください。
ヒント
使用するコマンド : echo
解答
$ echo "Hello, world!" >> test.txt
解説
echo "Hello, world!": この部分で、"Hello, world!" という文字列を標準出力に出力します。
>> test.txt: 標準出力を test.txt ファイルに追記します。
> で上書き、>> で追記になります。
詳しくはLinuxコマンドのリダイレクトを試すをご覧ください。