view bin/unicode @ 9256:ecde94b992a5

<oerjan> mkx bin/hlnp//hg log "$@" | sed \'s/\\(<[^>]*\\)\\([^>]>\\)/\\1\xcc\x88\\2/g\'
author HackBot
date Thu, 13 Oct 2016 03:51:25 +0000
parents 56dcce63901b
children
line wrap: on
line source

#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import re
import sys, os
import unicodedata
def l(c): m = re.match('(?:U[+])?([0-9a-f]{1,5})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16))
try:
    print u''.join(map(l, sys.argv[1:])).encode('utf-8')
except KeyError:
    os.execvp("multicode", ["multicode"] +sys.argv[1:])