1、查找文件
find / -name 'filename'
- 1
2、查找目录
find / -name 'path' -type d
- 1
3、查找内容
# find .| xargs grep -ri 'fmtmsg'
文件内容搜索
[root@localhost runtest]# grep fmtmsg *
ltplite:fmtmsg01 fmtmsg01
stress.part3:fmtmsg01 fmtmsg01
syscalls:fmtmsg01 fmtmsg01
[root@localhost runtest]#