diff options
author | Aaron LI <aly@aaronly.me> | 2019-08-27 15:54:43 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-08-27 15:54:43 +0800 |
commit | 1b2c8eb3b653ecc05e332be16a79e740cd679a9f (patch) | |
tree | 6469eb638ce77829075150edfe167c6e3df395f0 /cli | |
parent | 3fa1adf05c7b93114519062721fde6fe860ec5cb (diff) | |
download | atoolbox-1b2c8eb3b653ecc05e332be16a79e740cd679a9f.tar.bz2 |
cli/unzip-gbk: Rewrite in shell and use bsdtar/7z
* Rewrite in shell instead of using the deprecated Python 2.
* Use bsdtar/7z to extract zip to preserve the filename encoding;
these tools also support encrypted zip archives.
* Use iconv to convert the filename encoding.
Diffstat (limited to 'cli')
-rwxr-xr-x | cli/unzip-gbk.py | 26 | ||||
-rwxr-xr-x | cli/unzip-gbk.sh | 55 |
2 files changed, 55 insertions, 26 deletions
diff --git a/cli/unzip-gbk.py b/cli/unzip-gbk.py deleted file mode 100755 index 423e10f..0000000 --- a/cli/unzip-gbk.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -# unzip-gbk.py -# -# http://note.ninehills.info/linux-gbk.html -# - -import os -import sys -import zipfile - -print "Processing File " + sys.argv[1] - -file=zipfile.ZipFile(sys.argv[1],"r"); -for name in file.namelist(): - utf8name=name.decode('gbk') - print "Extracting " + utf8name - pathname = os.path.dirname(utf8name) - if not os.path.exists(pathname) and pathname!= "": - os.makedirs(pathname) - data = file.read(name) - if not os.path.exists(utf8name): - fo = open(utf8name, "w") - fo.write(data) - fo.close -file.close() diff --git a/cli/unzip-gbk.sh b/cli/unzip-gbk.sh new file mode 100755 index 0000000..53c7b57 --- /dev/null +++ b/cli/unzip-gbk.sh @@ -0,0 +1,55 @@ +#!/bin/sh +# +# Extract a zip archive and fix Chinese filenames. +# +# Credit: https://superuser.com/a/872616 +# + +has() { + type "$1" >/dev/null 2>&1 +} + +extract() { + if has bsdtar; then + # bsdtar provided by libarchive + bsdtar -xvf "$1" + elif has 7z; then + # 7z provided by p7zip + env LC_ALL=C 7z x "$1" + else + echo "ERROR: Neither bsdtar nor 7z found" >&2 + exit 1 + fi +} + +fixnames() { + find . -depth | while read -r p; do + dn=$(dirname "${p}") + fn=$(basename "${p}") + fn2=$(echo "${fn}" | iconv -f gbk -t utf-8) + if [ "${fn}" != "${fn2}" ]; then + mv -v "${dn}/${fn}" "${dn}/${fn2}" + fi + done +} + +case $1 in +'' | -h | --help) + echo "usage: ${0##*/} <zip>" + exit 1 + ;; +esac + +zipfile=$(realpath "$1") +curdir=$(pwd) +tmpdir=$(mktemp -d) +cd "${tmpdir}" + +echo "Extracting archive '${zipfile}' ..." +extract "${zipfile}" +echo "Fixing filenames ..." +fixnames + +cd "${curdir}" +mv "${tmpdir}"/* . +rmdir "${tmpdir}" |