This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## Test on Mac only. Using this tool to find string constants in so libraries | |
| ## | |
| ## Documentation of `strings` | |
| ## Strings looks for ASCII strings in a binary file or standard input. Strings is useful for identifying random object files and many other things. A string is any sequence of 4 (the default) or more printing characters [ending at, but | |
| ## not including, any other character or EOF]. Unless the - flag is given, strings looks in all sections of the object files except the (__TEXT,__text) section. If no files are specified standard input is read. | |
| ## | |
| ## | |
| ## Use `man strings` to get more detail | |
| for filename in ./*.so; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The JSON Validator | |
| http://jsonlint.com/ | |
| Nodejitsu Documentation - node.js | |
| https://www.nodejitsu.com/documentation/ |