Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用find / -name xxx的是“”,但它只搜索文件名。
find / -name xxx
我想要的是xxx在文件的完整路径中包含包含“”的结果。例如,我希望/data/xxx/somefile.txt结果中包含路径为“”的文件。
xxx
/data/xxx/somefile.txt
如何在 Android 设备上实现这一点?
find . -wholename "*xxx*"
或者如果您只需要具有此类名称的目录
find . -wholename "*/xxx/*"
@Fivesheep 的评论对我有用。