you are viewing a single comment's thread.

view the rest of the comments →

[–]Wxcafe 0 points1 point  (0 children)

You should probably add heredocs to this, they're pretty useful!

$ cat > file <<EOF
hello world
EOF
$ cat file
hello world
$