find 下参数的关系默认是and 一个参数多个选项可以用 -or
[root@ob2 mytmp]# find -type f -name "*.html" -or -name "*.txt"
./02.html
./aa.html
./03.html
./01.html
./aa2.txt
[root@ob2 mytmp]# find -type f -name "*.html" -and -name "*.txt"
时来天地皆同力,运去英雄不自由
[root@ob2 mytmp]# find -type f -name "*.html" -or -name "*.txt"
./02.html
./aa.html
./03.html
./01.html
./aa2.txt
[root@ob2 mytmp]# find -type f -name "*.html" -and -name "*.txt"