guitar-player

uncompress.py

Feb 21st, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. import os
  4. #from os import system as sys
  5.  
  6. f = open("uncompress.txt", "r")
  7. for line in f:
  8. #   print line[:-1]
  9.     uncompress = 'unzip' + ' ' + line
  10.     os.system(uncompress)
Advertisement
Add Comment
Please, Sign In to add comment