Is there an adb command similar to "locate" or "grep" that would help me find a file on my Android device?
I'm curious about adb specifically, not a search app.
EDIT: "find" has been suggested, but on my ICS device:
hydrangea@turnsole:~$ adb shell find / -name *maps*
/system/bin/sh: find: not found
On my Gingerbread device it works, though. (Except I haven't rooted that device so it lacks permission.)
hydrangea@turnsole:~$ adb shell find / -name *maps*
find: permission denied
grep
but notlocate
(AFAIK). – eldarerathis Feb 29 '12 at 22:40