Glam Prestige Journal

Bright entertainment trends with youth appeal.

I have over a hundred .zip files that I need to be merged into one. I have found that a possibility is to use:

cat "filename1.zip" "filename2.zip" "filenamen.zip">"merged_file.zip"

This gives me a file with the same size as the other's combined, but upon extraction, it gives an error.

Is there something I am still doing wrong or is there a better way to do this?

3

1 Answer

You have to extract all files and rezip them. Otherwise you just create a binary merge which is not usable by the .Zip-Applications.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy