Even though It may sound like a nitpick, adding the shebang now provides the possibility to create symlinks for scripts to the directory inside $PATH environment variable.
For example, without an added shebang, the interpreter cannot be resolved
With shebang added, the issue is solved
And with this, we can setup/copy the script into the directory in $PATH and use it flawlessly
Even though It may sound like a nitpick, adding the shebang now provides the possibility to create symlinks for scripts to the directory inside $PATH environment variable. For example, without an added shebang, the interpreter cannot be resolved
With shebang added, the issue is solved
And with this, we can setup/copy the script into the directory in $PATH and use it flawlessly