linux 中常用的查找文件和文件中字符串的操作:
- 在某个路径下查找文件
例如在 /etc 中查找 "*.log"的文件
find /etc -name "*.log"
- 查找某个路径下所有包含"hello"字符串的文件
find /etc -name "*" | xargs grep "hello"
linux 中常用的查找文件和文件中字符串的操作:
例如在 /etc 中查找 "*.log"的文件
find /etc -name "*.log"
find /etc -name "*" | xargs grep "hello"
本文标题:Linux中常用的查找命令
本文链接:https://www.haomeiwen.com/subject/xqfxxhtx.html
网友评论