in reply to Re: utf8 "\xD0" does not map to Unicode at /path/comparebin.pl line line_number, <STDIN> line line_number
in thread utf8 "\xD0" does not map to Unicode at /path/comparebin.pl line line_number, <STDIN> line line_number

Adding -l to perl's command line options will print the file name without the trailing .a.

Use printf "%v02x\n" if you want to pad each number to two digits.

find /YOUR/PATH -type f -name '18.19.2012*' \ | perl -nle'printf "%v02x\n", $_'
  • Comment on Re^2: utf8 "\xD0" does not map to Unicode at /path/comparebin.pl line line_number, <STDIN> line line_number
  • Select or Download Code