view bin/ümläüt @ 10069:36a13e954193

<zgrep> ` chmod +x bin/\xc3\xbcml\xc3\xa4\xc3\xbct
author HackBot
date Sun, 01 Jan 2017 16:21:08 +0000
parents e1f752ed8520
children 602a72182b60
line wrap: on
line source

#!/usr/bin/env python
import sys
if len(sys.argv) != 2:
    print('Incorrect usage.')
    exit(1)
o = u''
for c in sys.argv[1]:
    o += c
    o += u'\u0308'
print(o)