Zip and Unzip Command


To zip a folder and it's contents recursively :

$ zip -r -q archivefile foldername (enter)


To unzip a zip file :

$ unzip -q archivefile (enter)


Source :

https://stackoverflow.com/questions/31982099/zip-and-unzip-a-directory-and-its-file-in-linux

http://gnuwin32.sourceforge.net/

https://stackoverflow.com/questions/18180060/how-to-zip-a-file-using-cmd-line

Comments