Improve your bash.
# lint currently executing file and stop if it finds anything.
set -e
shellcheck "$(basename "$0")"
Although sometimes shell check recommends even less readable code than what I wrote.
Post
April 10, 2018
April 10, 2018
Improve your bash.
# lint currently executing file and stop if it finds anything.
set -e
shellcheck "$(basename "$0")"
Although sometimes shell check recommends even less readable code than what I wrote.