解决方案查看find: missing argument to `-exec'
/c/Users/Administrator/Desktop/shellGlobStar/src/grep/grep-content.sh: line 2: filelist: command not found
解决方案:等号两边没有空格
#files=`grep magic $path`
#修改为如下内容
files=`grep magic $path/*`
解决方案查看find: missing argument to `-exec'
解决方案:等号两边没有空格
#files=`grep magic $path`
#修改为如下内容
files=`grep magic $path/*`