Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- import os
- #from os import system as sys
- f = open("uncompress.txt", "r")
- for line in f:
- # print line[:-1]
- uncompress = 'unzip' + ' ' + line
- os.system(uncompress)
Advertisement
Add Comment
Please, Sign In to add comment