Adding multiple lines with sudo

ยท
1 min read
notes
#shell #sudo

Adding multiple lines to a file with sudo.

Overwrite/Make New

When you want a multi line write to a file using sudo:

Terminal window
$ sudo tee /tmp/test.txt << EOF
LINE 1
LINE 2
...
LINE n
EOF

Append

For appending new lines

Terminal window
$ sudo tee -a /tmp/test.txt << EOF
LINE 1
LINE 2
...
LINE n
EOF

Done.