不區分大小寫的匹配

製備

$ mkdir globbing
$ cd globbing
$ mkdir -p folder/{sub,another}folder/content/deepfolder/
touch macy stacy tracy "file with space" folder/{sub,another}folder/content/deepfolder/file .hiddenfile
$ shopt -u nullglob
$ shopt -u failglob
$ shopt -u dotglob
$ shopt -u nocaseglob
$ shopt -u extglob
$ shopt -u globstar

設定選項 nocaseglob 將以不區分大小寫的方式匹配 glob

$ echo M*
M*
$ shopt -s nocaseglob 
$ echo M*
macy