在/home目录下查找以.txt结尾的文件名find /home -name "*.txt"
在当前目录下查找以.htm结尾的文件名find . -name "*.htm"
基于正则表达式匹配文件路径find /usr/ -path "*local*"
搜索当前目录下包含portal的文件夹find . -name "portal" -type d