Mod mail from u/linux26
Good tutorial! but a few things:
but in the first line and followed by a "!"
The shebang doesn't just have to be in the first line, it has to be within the first two bytes. https://stackoverflow.com/a/3009280
Also consider using a here document instead of echo on multiple lines. cat << EOF
$() is better than `` since the latter gets really complicated to nest.
Mod mail from u/linux26