Zipping and Unzipping in Ubuntu Linux

Gaurav Gandhi
1 min readJul 24, 2019

--

Compressing several files and folders into a single zip with best compression

Zipping

zip -r9 filename.zip file1 direname1 ...

-r = recursive, -9 = max compression

Unzipping

unzip -d foldername zipfile_name.zip 

-d = xtract into a separate new directory

--

--

Gaurav Gandhi
Gaurav Gandhi

Written by Gaurav Gandhi

10+ yrs exp. in software dev. Highly versatile and adaptable, learns new tech quickly to deliver top-notch results.

No responses yet