我想知道这两个命令有什么区别..
find . –name *.txt
find . –name "*.txt"
我在系统中运行它并且找不到任何区别,
标志" "
做了什么?
答案 0 :(得分: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