holzschu / a-shell

A terminal for iOS, with multiple windows

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Strings command

jpferrero opened this issue · comments

I've just discovered this project and it's awesome! It would be nice to include 'strings' command from binutils into the wash repo!

Thanks

I'm going to see if I can find the source code for that. That's the command that displays all the character strings inside a binary, right? There's already hexdump, available as a downloadable command (pkg install hexdump); it's not the same but it might help while I find the source, compile and install strings. I have to warn you, an app does not have access to the binaries of other apps, and also does not have access to most of the system binaries, and all of these are usually encrypted, so strings might not work.

Hi!

Strings is part of binutils library:

https://www.gnu.org/software/binutils/

Also it's part of MacOS:

https://opensource.apple.com/source/cctools/cctools-698.1/misc/strings.c

I'm aware that app does not have access to the binaries ;)

Thank you very much

The GNU version is now available for download, using pkg install strings.
I have to make a correction: strings actually works pretty well with the system binaries (those in /System/Library).

Installed and using it! Thank you very much much!