Last active
October 14, 2024 17:40
-
-
Save gauravbarthwal/3fc0b44934ce78a97fd4e99322d2ed62 to your computer and use it in GitHub Desktop.
How to extract multi-part .zip, .z01, .z02 files in ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download/Copy all related *.zip files in one directory. | |
Open terminal and change to that directory which has all zip files. | |
Enter command zip -s- FILE_NAME.zip -O COMBINED_FILE.zip | |
Enter unzip COMBINED_FILE.zip |
thank you! It works for me
Thank you very much!
Thanks so much.
Hey, could you explain what the -s- means, i know -s is the flag and it needs a size after -s but how does - after -s work. Thanks btw. I searched for an hour before I found this thread
''-" after -s joins all zip files together.
Hi! I'm new on Linux and I would appreciate it if someone could explain this process in detail. I do have multiple zip files with this name: *Z001, *Z002, etc... Do I have to repeat the third step (Enter command zip -s- FILE_NAME.zip -O COMBINED_FILE.zip) for each file? otherwise, what should I put in the FILE_NAME.zip field?
Thanks so much.
Thank you so much! I spent many hours finally found your code and it helped.
Thank you!!!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It worked. Thanks!!!