Thursday, June 27, 2013

MD5 Python

>>> import urllib, hashlib
>>> me = hashlib.md5('hello')
>>> print me
<md5 HASH object @ 0x10568d970>
>>> print me.hexdigest()
5d41402abc4b2a76b9719d911017c592

Thursday, June 13, 2013

Simple zip command

find . -name "*.aiff" -print | zip source -@