Quickly Zip And Unzip Files Using Linux Mint/Ubuntu Terminal

Here is how to quickly zip and unzip files using Linux Mint/Ubuntu terminal : 1. Install zip and unzip if not present by typing : sudo apt-get install zip sudo apt-get install unzip 2. Once installed, to compress files or folders in .zip format, type : zip nameoftargetziparchive *   This will put all the files from current directory into the archive named docs as specified and saved as docs.zip. To...