A Complete Guide to Linux Compression and Decompression Commands
Linux zip Command Guide: How to Zip and Unzip Files
zip -r myfile.zip ./*
Compress all files and folders in the current directory into myfile.zip. The -r flag recursively compresses all files in subdirectories.
2. unzip
unzip -o -d /home/sunny myfile.zip
Extract myfile.zip to /home …