how to gzip a file in linux code example
Example 1: unzip a .gz file in linux
gunzip file.gz
Example 2: gzip file
gzip [OPTION]... [FILE]...
gzip file.exe #To compress a file
gzip -d file.exe.gz #To decompress file
gunzip file.gz
gzip [OPTION]... [FILE]...
gzip file.exe #To compress a file
gzip -d file.exe.gz #To decompress file