查询该目录及子目录下所有的以.conf为后缀的文件
find ./ -name “conf”
find ./ -name "*.[conf]"
find ./ -type d | egrep "\.(conf)"
find ./ -regextype posix-extended -regex ".*\.(conf)"