Please use /bin/sh wherever possible
Created by: yurivict
For example, the moose
executable
#!/usr/bin/env bash
(
cd /usr/local/lib/moose && python mgui.py &
)
doesn't need bash at all.
On BSD systems bash is an external dependency, and sh
is available everywhere by default.