diff --git a/unzip.py b/unzip.py new file mode 100644 index 0000000..800fb38 --- /dev/null +++ b/unzip.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 +import sys +from zipfile import PyZipFile +for zip_file in sys.argv[1:]: + pzf = PyZipFile(zip_file) + pzf.extractall() \ No newline at end of file