Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 459 Bytes

commonError.md

File metadata and controls

12 lines (10 loc) · 459 Bytes

find: missing argument to `-exec'

解决方案查看find: missing argument to `-exec'

/c/Users/Administrator/Desktop/shellGlobStar/src/grep/grep-content.sh: line 2: filelist: command not found

解决方案:等号两边没有空格

grep: /c/Users/Administrator/Desktop/shellGlobStar/src/grep: Is a directory

#files=`grep magic $path`
#修改为如下内容
files=`grep magic $path/*`