view bin/unidecode @ 12173:c09becd5b2ae draft

<oerjan> learn `rlexp <compressed code> is a command for expanding the rle format fungot ^show\'s for brainfuck code but doesn\'t accept as input.
author HackEso <hackeso@esolangs.org>
date Wed, 20 Nov 2019 06:37:46 +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