lib/scripts/recode.pl
author haftmann
Sat, 19 Dec 2015 17:03:17 +0100
changeset 61891 76189756ff65
parent 52835 0906c00bb21d
child 62506 860cd901ab43
permissions -rw-r--r--
documentation on last state of the art concerning interpretation

#
# Author: Makarius
#
# recode.pl - recode utf8 for ML
#

for (@ARGV) {
  utf8::upgrade($_);
  s/([\x80-\xff])/\\${\(ord($1))}/g;
  print $_, " ";
}