linux常用的搜索命令

搜索包含123内容的文件夹
grep "123" ./ -r -n

按照名字查找
find ./ -name “xxxx”

find ./ -name "123.txt"

adb logcat |grep tag
有时候回出现,adb grep不是内部命令改用find

原文地址:https://www.cnblogs.com/adong7639/p/9468601.html