But echo 414243 | perl -nle "print pack 'H*', $_" also produces no result. – emxJun 22 '12 at 10:22
That would be because your shell is expanding the $_ variable to nothing before perl had any chance to see it. You want echo 414243 | perl -nle "print pack 'H*', \$_" – lanzzJun 22 '12 at 10:28
Ouch the beginner's mistake! Thanks for pointing it out. echo 414243 | perl -nle 'print pack "H*", $_' works great indeed. – emxJun 22 '12 at 10:31