view bin/unidecode @ 5537:14026f5040ad

<oerjan> ` sed -i \'s,entry,entry because having an actual infinite file in wisdom/ makes all manner of stuff bloody awkward,\' wisdom/ngevd
author HackBot
date Fri, 12 Jun 2015 03:02:17 +0000
parents 940c1732e450
children
line wrap: on
line source

#!/usr/bin/env python
import os, sys
import unicodedata
s = u" ".join("[U+{0:04X} {1}]".format(ord(c), unicodedata.name(c, "DUNNO")) for c in " ".join(sys.argv[1:]).decode("utf-8")).encode("utf-8")
if u"DUNNO" in s:
  os.execvp("multicode", ["multicode"] + sys.argv[1:])
else:
  print s