Mercurial > hg > config
view python/hexify.py @ 28:4c9248b9498e
new home for smartopen
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Tue, 09 Mar 2010 21:23:39 -0500 |
| parents | f3ab51c79813 |
| children | ffb75d832afe |
line wrap: on
line source
#!/usr/bin/env python import sys print ''.join([ '%'+ hex(ord(i))[-2:] for i in ' '.join(sys.argv[1:]) ])
