Skip to content
nathandarnell edited this page May 8, 2014 · 9 revisions

SC2024 sudo doesn't affect redirects. Use ..| sudo tee file

Problematic Code:

sudo ls -hal /root/ > /root/test.out

Correct Code:

sudo sh -c 'ls -hal /root/ > /root/test.out'

Source

http://stackoverflow.com/a/82278

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature above to find a specific one, or see Checks.

Clone this wiki locally