While I was unzipping a 72Gb file I got the following errors…
bad zipfile offset (local header sig):
I had to install default-jdk and then use jar.
jar -xf filename.zip
References
http://stackoverflow.com/a/31084012/1987037
While I was unzipping a 72Gb file I got the following errors…
bad zipfile offset (local header sig):
I had to install default-jdk and then use jar.
jar -xf filename.zip
References
http://stackoverflow.com/a/31084012/1987037
I have 200 zip files in a folder… I need to unzip them to the same folder and the content of each for a respective folder with the name of the zip file.
This is how:
find -name '*.zip' -exec sh -c 'unzip -d "${1%.*}" "$1"' _ {} \;