如何使用or语句查找多种类型的文件?

时间:2015-06-25 01:09:16

标签: linux macos terminal find

我似乎无法通过搜索在StackOverflow上找到它。如何查找.html.py类型的所有文件?

我正在尝试find ./ -name *.py or *.html -type f

但这将返回find: or: unknown primary or operator

1 个答案:

答案 0 :(得分:3)

$ find . -name '*.h' -o -name '*.cpp'.

find . -type f \( -name "*.class" -o -name "*.sh" \)