view bin/unidecode @ 11702:1383f43fd3e9 draft

<Taneb> learn Shannon forbade non mathematically minded people from reading his resarch papers. Taneb invented Shannon, his research papers, and Shannon\'s prohibition.
author HackEso <hackeso@esolangs.org>
date Tue, 29 Jan 2019 13:48:10 +0000
parents c3351169a617
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("singlecode", ["singlecode"] + sys.argv[1:])
else:
  print s