adb shell中查找文件
grep是查找文件內(nèi)的內(nèi)容,find是查找文件名。
比如grep 'text' *??? 就是查找當(dāng)前文件夾中所有包含“text”的文件
find -name 'text'??? 就是查找一個(gè)叫text的文件无拗。
find / -name "*Bluetooth*"?? 全盤搜索含有Bluetooth文字的文件名稱。
find ./ -name "*Bluetooth*"?? 只是在當(dāng)前目錄下搜索含有Bluetooth文字的文件名稱。
find -type d?? 列出其包含的所有目錄