Quote:
Originally Posted by PAEz
I dont know nuthn really on unix commands but that sounded usefull so i had a look.
Strings dump all the text thats in a file, ignoring all the nontext stuff. This lets ya find text in a binary file easier.
It is a command that you run from a terminal, so you need to connect to your iphone/touch with something like putty or the terminal in winscp....theres tutorials around on doing that.
Once in the terminal and connected to the iphone you can type something like....
strings /the/path/to/the/file
...and it will list all the strings in the file.
If your like me and ya dont like typing then install winscp...
goto Files/Custom Commands/Customize, click Add, and add....
Descripton:
List PNG strings
Custom Command:
strings "!" | grep -i ".png"
...and tick Show results in terminal
...now you can connect to your iphone, right click on a file and select Custom Commands/List PNG strings and it will do it for you. The extra grep stuff will make it list only the strings that contain .png which is what ya want. Try it on /System/Library/Frameworks/UIKit.framework/UIKit
But then even with the file name you still wont have the pic and that might be a bugger.
Hope it helps.
|
thank you for your reply ...
i tried that and it left a
strings /System/Library/TextInput/TextInput_emoji.bundle/TextInput_emoji
UIKeyboardInputManager_emoji..
so i was looking to get more information out of the file ....so im not sure what to do next...
Thanks again for your help