#!/bin/bash – or #!/bin/bash — In A Shell Script
Question: I know #!/bin/bash is shebang line. But, I noticed a few shell script shebang line ends with a single dash ( #!/bin/bash - ) or double dash ( #!/bin/bash -- ). Can you explains me purpose of such shebang line? Answer: A - or -- signals the end of options and disables further option proces...
Continue reading ...