Skip to content

Instantly share code, notes, and snippets.

@K-atc
Created July 4, 2015 16:48
Show Gist options
  • Select an option

  • Save K-atc/256c866f5e92db7182ed to your computer and use it in GitHub Desktop.

Select an option

Save K-atc/256c866f5e92db7182ed to your computer and use it in GitHub Desktop.
uudecode
import uu
import sys
if not(len(sys.argv) >= 2):
print "uudecode: "
print "usage: python uudecode.py <file>"
exit()
uu.decode(sys.argv[1], sys.stdout)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment