view python/hexify.py @ 29:8344c7a9847c

install smartopen by default and some other cleanup (untested)
author Jeff Hammel <k0scist@gmail.com>
date Wed, 10 Mar 2010 14:12:41 -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:]) ])