How to create zip and unzip in linux or ubuntu?

Zip and unzip in linux or ubuntu

You only have to run this command to make a zip of a folder

zip -r application.zip application

Application is the folder name of the current folder.

This command will create zip of that folder

Now Unzip command
It is very simple just run command for unzip

unzip application.zip

It will unzip the folder in current folder

Comments