perl -p -e 'y/\\101-\\132\\141-\\172/\\116-\\132\\101-\\115\\156-\\172\\141-\\155/'
enry said:LOL... You guys kill me.
Okay here's one that unix geeks ought to pick up on the spot..
JNLBSSGBCVP
In cryptography, I used what is called a monoalphabetic substitution cypher. Each letter of the alphabet is substitued with another one.
Here's the perl command line that produced it (slightly obfuscated to make it more difficult to understand. Hint: computers don't like base 10 numbers).
PHP:perl -p -e 'y/\\101-\\132\\141-\\172/\\116-\\132\\101-\\115\\156-\\172\\141-\\155/'
tr/a-z/A-Z/; for ($i=1;$i<=25;$i++){ $s=$_;print "k=$i -> ";eval("\$s=~tr/A-Z/".chr(65+$i)."-ZA-".chr(64+$i)."/;");print $s;} }