我很难找到在当前目录及其子目录中查找匹配。
当我运行find *test.c时,它只给我当前目录中的匹配项。(不查看子目录)
如果我试着找到。我希望得到相同的结果,但它只给我子目录中的匹配项。当工作目录中有应该匹配的文件时,它给我:find: paths必须在expression: mytest.c之前
这个错误是什么意思,如何从当前目录及其子目录中获得匹配?
我很难找到在当前目录及其子目录中查找匹配。
当我运行find *test.c时,它只给我当前目录中的匹配项。(不查看子目录)
如果我试着找到。我希望得到相同的结果,但它只给我子目录中的匹配项。当工作目录中有应该匹配的文件时,它给我:find: paths必须在expression: mytest.c之前
这个错误是什么意思,如何从当前目录及其子目录中获得匹配?
当前回答
在我的情况下,我错过了跟踪/在路径。
find /var/opt/gitlab/backups/ -name *.tar
其他回答
试着把它放在引号里:
find . -name '*test.c'
试着把它放在引号里——你遇到了shell的通配符展开,所以你实际传递给find的东西看起来像这样:
find . -name bobtest.c cattest.c snowtest.c
...导致语法错误。所以试试这个吧:
find . -name '*test.c'
注意文件表达式周围的单引号——这将阻止shell (bash)展开通配符。
你可以试试这个:
cat $(file $( find . -readable) | grep ASCII | tr ":" " " | awk '{print $1}')
这样,您就可以用ASCII找到所有可读的文件,并使用cat读取它们
如果你想指定他的权重和不可执行的:
cat $(file $( find . -readable ! -executable -size 1033c) | grep ASCII | tr ":" " " | awk '{print $1}')
从查找手册:
NON-BUGS
Operator precedence surprises
The command find . -name afile -o -name bfile -print will never print
afile because this is actually equivalent to find . -name afile -o \(
-name bfile -a -print \). Remember that the precedence of -a is
higher than that of -o and when there is no operator specified
between tests, -a is assumed.
“paths must precede expression” error message
$ find . -name *.c -print
find: paths must precede expression
Usage: find [-H] [-L] [-P] [-Olevel] [-D ... [path...] [expression]
This happens because *.c has been expanded by the shell resulting in
find actually receiving a command line like this:
find . -name frcode.c locate.c word_io.c -print
That command is of course not going to work. Instead of doing things
this way, you should enclose the pattern in quotes or escape the
wildcard:
$ find . -name '*.c' -print
$ find . -name \*.c -print
当我试图找到多个文件名时,我遇到了这个问题,我不能组合成一个正则表达式,正如@Chris J的回答所描述的那样,下面是对我有用的方法
find . -name one.pdf -o -name two.txt -o -name anotherone.jpg
-o或-or是逻辑或。更多信息请参见Gnu.org上的查找文件。
我在CygWin上运行这个。