例如所有匹配“.doc”和“.txt”。我知道如何查找一种扩展类型,但我需要多种扩展类型,而无需运行多个命令。
答案1
find
您可以使用-o
(OR)组合测试
find path/to/somedir \( -name '*.doc' -o -name '*.txt' \)
参见man find
,特别是
例如所有匹配“.doc”和“.txt”。我知道如何查找一种扩展类型,但我需要多种扩展类型,而无需运行多个命令。
find
您可以使用-o
(OR)组合测试
find path/to/somedir \( -name '*.doc' -o -name '*.txt' \)
参见man find
,特别是