Quote:
Originally Posted by beav626
I dont quite understand how this works. Where do I type, and what do i type
|
You must have MobileTerminal installed or OpenSSH (or equivalent) installed, both from Cydia.
MobileTerminal is a local application (run from iPhone). You type the 'find...' command from within MobileTerminal. Depending upon you current permissions (mobile or root) and your starting location, 'find ....' will recursively search files and directories.
OpenSSH (or just SSH) allows a PC to connect to the iPhone and execute tasks. On the PC, I use WinSCP to connect, then within WinSCP I open a command terminal and exectue a 'find ...' command.
All of this requires some knowledge, reading, and more reading to understand. You'll never learn it overnight. But it's not so difficult if you are willing to put some effort into it
What do you type? Well, it depends upon what you're looking for. In my original post, that command searched for 'install' from the current directory. The link at the bottom in the original post provides extensive reading to explore the capabilities and 1,000's of options to 'find...'. It is a very powerful utility/command -- and again, can't be learned overnight.
You might say 'This is way over my head' -- and you might be right

But learning just one example, say: "
find / -type f -exec grep "search string" '{}' /dev/null ; -print" (no double quotes '"') can go a long way towards your goal. BTW The above command searches EVERYWHERE for 'search string'.