in reply to Re^2: I usually debug via...in thread I usually debug via...
perl -e '$a=qq/447564652c2067657420726964206f662057696e646f 7773/;print (chr hex $1) while ($a=~s/(^.{2})//)' [download]
Or with double-quotes:
perl -e "$a=qq/447564652c2067657420726964206f662057696e646f 7773/;print (chr hex $1) while ($a=~s/(^.{2})//)" [download]
FWLIMBW at this late date, the former works for me on Cygwin, the latter on Strawberry Perl.
HTH,