Overwrite/Make New
When you want a multi line write to a file using sudo:
$ sudo tee /tmp/test.txt << EOFLINE 1LINE 2...LINE nEOFAppend
For appending new lines
$ sudo tee -a /tmp/test.txt << EOFLINE 1LINE 2...LINE nEOFDone.
Adding multiple lines to a file with sudo.
When you want a multi line write to a file using sudo:
$ sudo tee /tmp/test.txt << EOFLINE 1LINE 2...LINE nEOFFor appending new lines
$ sudo tee -a /tmp/test.txt << EOFLINE 1LINE 2...LINE nEOFDone.