Reputation: 80
There is no utilites like find, grep , "ls -laR" to find files in Android os. IS there a way or is there a list of current default files in the os file system hierarchy?
Upvotes: 3
Views: 3528
Reputation: 107759
Make a local copy of the files using adb pull /system system; adb pull /data data
and use your favorite tools to search on your development machine. Or you can install BusyBox on the emulator, which gives you something intermediate between the extremely limited built-in command line and a full unix command line.
Upvotes: 1