Updated Recursiveness (markdown)

Anmol Sethi
2019-03-18 09:54:44 -04:00
parent 3676016c63
commit c096a98dd0

@@ -16,6 +16,9 @@ To check files with one of multiple extensions:
``` ```
# Bash 4+ # Bash 4+
# 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 shopt -s globstar nullglob
shellcheck /path/to/scripts/**/*.{sh,bash,ksh} shellcheck /path/to/scripts/**/*.{sh,bash,ksh}