view python/hexify.py @ 246:d9b8d176c449

add a thing to get the full path to current patch and start organizing aliases
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 30 Nov 2012 10:20:42 -0800
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:]) ])