From 823e9f60327b02e1f3b9e37f5ad6626fa6ebd568 Mon Sep 17 00:00:00 2001 From: Pat Myron Date: Sat, 30 Mar 2019 23:03:16 -0400 Subject: [PATCH] removing globstar --- Recursiveness.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Recursiveness.md b/Recursiveness.md index 0326de4..030110c 100644 --- a/Recursiveness.md +++ b/Recursiveness.md @@ -19,7 +19,7 @@ To check files with one of multiple extensions: # nullglob will prevent one of the extension patterns from appearing in the arg list # if they don't match. # dotglob will match shell scripts in hidden directories. -shopt -s globstar nullglob dotglob +shopt -s nullglob dotglob shellcheck /path/to/scripts/**.{sh,bash,ksh,bashrc,bash_profile,bash_login,bash_logout} # POSIX