Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • your shebang doesn't seem right Commented Mar 15, 2017 at 17:26
  • @NarūnasK. That's the correct she-bang if you want it to be interpreted by /bin/sh. If one wanted to be pedantic, #! /bin/sh would be incorrect. Commented Mar 15, 2017 at 19:16
  • @NarūnasK, see also Why the "-" in the "#! /bin/sh -" she-bang? Commented Mar 15, 2017 at 21:41
  • In fact my eyes caught a space between #! and /bin/sh - which after further reading appeared to be optional and having space in shebang definitely is not an error, hence apologies for confusion. Commented Mar 16, 2017 at 9:49