Compress and decompress files using command line tools - Linux
In almost default Linux installation, there is no default tools to compress and decompress files. There is utility to archive files called tar
, but it just archive the files without any compression.
So first we want to install zip
and unzip
tools to compress and decompress files.
apt-get install zip
apt-get install unzip
OR
sudo apt-get install zip unzip
Compress files / Directory
zip your_folder *
There is no need to add .zip extension or suffix as it is added automatically by zip
command. Then use the ls
command to verify new zip file.
ls
To compress an entire directory (including all subdirectories), use -r with zip command and it will recursively compress our files and folders.
zip -r your_folder *
Decompress files / Directory
unzip your_folder.zip
To extract one file from compressed directory, we want to specify that file name with extension.
unzip your_folder.zip cv.doc
In the above example, I specified the name of the file (cv.doc) to be extracted in unzip command.
If we want to extract to a particular destination folder, then we need to specify the destination folder.
unzip your_folder.zip -d /var/www/
Here I specified the destination folder ( /var/www ) with unzip command.
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.