eg:

find . -name *.c -or -name *.cpp

需要将模糊搜索词用引号括起来:

find . -name "*.c" -or -name "*.cpp"

 

相关文章: