コマンドラインから複数行をファイルに書き出す
なんか忘れてて調べたのでメモ
$ cat <<EOF > somefile.txt > some text > some text > some text > EOF
当然追記する場合は>>で
$ cat <<EOF >> somefile.txt > some text > EOF
なんか忘れてて調べたのでメモ
$ cat <<EOF > somefile.txt > some text > some text > some text > EOF
当然追記する場合は>>で
$ cat <<EOF >> somefile.txt > some text > EOF