Skip to content

Instantly share code, notes, and snippets.

@ak64th
Created October 6, 2018 10:06
Show Gist options
  • Save ak64th/eab2d7a90745cd98daed79b57826d2bb to your computer and use it in GitHub Desktop.
Save ak64th/eab2d7a90745cd98daed79b57826d2bb to your computer and use it in GitHub Desktop.
unzip files with unicode filenames
#! /bin/sh
LANG=C /usr/bin/7z x -y "$1" | sed -n 's/^Extracting //p' | sed '1!G;h;$!d' | xargs convmv -f gbk -t utf8 --notest &>/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment