Because of bash shell expansion being on by default, if the folders we
didn't want to include in our find actually existed on the path, it could
cause find command to blowup
This fixes that by wrapping every find statement as:
set -o noglob
FIND command
set +o noglob
Because of bash shell expansion being on by default, if the folders we didn't want to include in our find actually existed on the path, it could cause find command to blowup
This fixes that by wrapping every find statement as: set -o noglob FIND command set +o noglob