The Great Blink mv for source files, part 2.
Move and rename files.
NOAUTOREVERT=true
NOPRESUBMIT=true
NOTREECHECKS=true
Bug: 768828
TBR=darin@chromium.org
NOTRY=true
Change-Id: I66d3b155808bc5bdbf237b80208e1e552bcf7f28
Reviewed-on: https://chromium-review.googlesource.com/1001153
Reviewed-by: Blink Reformat <blink-reformat@chromium.org>
Commit-Queue: Blink Reformat <blink-reformat@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#549061}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 0aee4434a4dba42a42abaea9bfbc0cd196a63bc1
diff --git a/scripts/unzip.py b/scripts/unzip.py
new file mode 100755
index 0000000..68f5eae
--- /dev/null
+++ b/scripts/unzip.py
@@ -0,0 +1,20 @@
+#!/usr/bin/env python
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import sys
+import zipfile
+
+if len(sys.argv) < 3:
+ print('Usage: {} <src> <dest>'.format(sys.argv[0]))
+ print(' <src> full path to zip file to be extracted')
+ print(' <dest> full path to destination folder')
+ sys.exit(1)
+
+src = sys.argv[1]
+dest = sys.argv[2]
+
+zip_ref = zipfile.ZipFile(src, 'r')
+zip_ref.extractall(dest)
+zip_ref.close()