citysys-terminal-server/pyunzip.py

6 lines
144 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
import sys
from zipfile import PyZipFile
for zip_file in sys.argv[1:]:
pzf = PyZipFile(zip_file)
pzf.extractall()