I tried to find in Android source code on github, but I didn't find the implementation of the find
command any where.
Can some one tell me where it is.
Thanks.
EDIT: An out-of-box Android provides no find
command. What is needed is some source code that implements find
so that it can be run on Android. Ideally, an answer should give us some source code that may be modified if necessary, but pointers to already compiled binaries are also relevant. Replacement scripts are also welcome.
Useful link: man find
(the man page for the find command). Android is a Linux whose command line shell is available via adb shell
. Shell script writers usually assume that the find
command is available (which is true on most platforms, but not on Android).
EDIT2 (in fact, this should be one of possible answers, but the question is already closed):
A lightweight implementation of find
may be found here.
I'm going to assume that you understand how to use the Linux
find
command and you just need help with running a linux command within Android.Something like Read command output inside su process might help you.
Also, You can use http://code.google.com/p/roottools/ to run command line processes. It simplifies it quite a bit, and you don't actually have to run the processes as root last time I checked.
If I'm totally off on what you wanted, please clarify what you need and I'll do my best to help.