Commit 2e47249f authored by Tristan Cavelier's avatar Tristan Cavelier

Remove cros-unzip.py because `python -m zipfile -e ARCHIVE TARGET` do the work

parent b22ebe53
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Extracts files from a .zip container to the current working directory.
http://stackoverflow.com/questions/7806563/how-to-unzip-a-file-with-python-2-4
"""
import sys
import zipfile
zfile = zipfile.ZipFile(sys.argv[1]) # Usage: unzip ZIPFILE
zfile.extractall(".")
zfile.close()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment