3

我想知道这两个命令有什么区别..

find . –name *.txt

find . –name "*.txt"

我在系统中运行它并没有发现任何区别,标志" "是做什么的?

4

1 回答 1

8

当您不在 glob 模式周围使用引号时,即当您说:

find . -name *.txt

然后 shell 将扩展为当前目录*.txt中的匹配文件,然后将它们作为参数传递给. 如果没有找到与该模式匹配的文件,则行为类似于引用的变体。find

当您使用引号时,即当您说:

find . -name "*.txt"

shell*.txt作为参数传递给find.

指定 glob 时始终使用引号(尤其是用作 的参数时find)。


一个例子可能会有所帮助:

$ touch {1..5}.txt                # Create a few .txt files
$ ls
1.txt  2.txt  3.txt  4.txt  5.txt
$ find . -name *.txt              # find *.txt files
find: paths must precede expression: 2.txt
Usage: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
$ find . -name "*.txt"            # find "*.txt" files
./2.txt
./4.txt
./3.txt
./5.txt
./1.txt
于 2013-10-26T08:21:30.433 回答