version 1.0.0, 2013-10-22 : Initial version
The "strings" command using a perl one-liner
Rewriting the strings linux command that returns every human readable strings in a binary that are longer than 4 characters.This perl command returns the exact same thing than the strings
linux command.
Usefull on windows for example! ;)
perl -nle 'print $& while m/[[:print:]]{4,}/g' binary_input