Updated Recursiveness (markdown)

Anmol Sethi
2019-03-18 10:10:00 -04:00
parent c096a98dd0
commit 4c0d154b2b

@@ -19,7 +19,8 @@ To check files with one of multiple extensions:
# globstar makes ** recursive.
# nullglob will prevent one of the extension pattens from appearing in the arg list
# if they don't match.
shopt -s globstar nullglob
# dot glob will match shell scripts in hidden directories.
shopt -s globstar nullglob dotglob
shellcheck /path/to/scripts/**/*.{sh,bash,ksh}
# POSIX