我正在寻找安装在我的系统上的shell脚本文件,但是找不到工作:
$ find /usr -name *.sh
但是我知道那里有大量的脚本。例如:
$ ls /usr/local/lib/*.sh /usr/local/lib/tclConfig.sh /usr/local/lib/tkConfig.sh
为什么找不到工作?
尝试引用通配符:
原文链接:https://www.f2er.com/bash/387561.html$ find /usr -name \*.sh
要么:
$ find /usr -name '*.sh'
如果碰巧有一个与当前工作目录中的* .sh文件相匹配的文件,那么在查找之前通配符将被扩展。如果您的工作目录中有一个名为tkConfig.sh的文件,则find命令将扩展为:
$ find /usr -name tkConfig.sh
这只会找到名为tkConfig.sh的文件。如果你有多个文件匹配* .sh,你会发现语法错误从find:
$ cd /usr/local/lib $ find /usr -name *.sh find: bad option tkConfig.sh find: path-list predicate-list
$ find /usr -name tclConfig.sh tkConfig.sh
引用通配符可防止其过早扩展。
另一种可能性是/ usr或其子目录之一是符号链接。查找通常不会跟随链接,因此您可能需要以下选项:
$ find /usr -follow -name '*.sh'