zip the unzip and unzip the zip

Long story short, I was trying to unzip a .zip file I had downloaded from OneDrive. And the unzip cmd util was complaining about unknown central directory. The filesize was 18GB so I basically was like WTF? Should I download the file again? No Gaurab, our good old internet has once again served it's purpose.

zip -FF ProblemZip.zip --out RepairedZip.zip

So, the idea here is to zip the unzip and then unzip the newly zipped file.

Source:

  1. osxdaily.com/2019/05/12/how-to-fix-unzip-er..