Skip to main content
unzip -UU option
Source Link
asdjfiasd
  • 151
  • 1
  • 3

I had luck with this combination:

export LANG=es_MX 
7z x file.zip
convmv -f cp437 -t utf8 -r .

(add add --notest to convmv for actual rename). Later I found even better version:

LANG=es_MX.cp437 unzip -UU file.zip
convmv -f cp437 -t utf8 -r . --notest

I had luck with this combination:

export LANG=es_MX 
7z x file.zip
convmv -f cp437 -t utf8 -r .

(add --notest to convmv for actual rename)

I had luck with this combination:

export LANG=es_MX 
7z x file.zip
convmv -f cp437 -t utf8 -r .

add --notest to convmv for actual rename. Later I found even better version:

LANG=es_MX.cp437 unzip -UU file.zip
convmv -f cp437 -t utf8 -r . --notest
Source Link
asdjfiasd
  • 151
  • 1
  • 3

I had luck with this combination:

export LANG=es_MX 
7z x file.zip
convmv -f cp437 -t utf8 -r .

(add --notest to convmv for actual rename)