May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

GZIP COMMAND

Gzip is one of the frequent command used in linux . gzip command is use do to compression of a file for reducing size of file. This will saves the bandwidth if the file is transferring between different systems.Moreover the reduced size depends on the the content of the file, if the content is text, it will reduce 60% and for image, it should be 80%.

gzip linux command usage

if we want to copy the mulitple files,the files should becompressed, so that bandwidth of file is reduced.Gzip abbrivated as GUN zip

Gzip command examples:-

1.Compression the file with deleting original file.

Gzip linuxFileName

This will replace a linuxFileName.gz which has size of 80% of linuxFileName in the current directory. The filename size is reduced by this command. Once gz file is created, linuxFileName should be deleted

2.Compression the file with keeping original file.

Gzip –c  linuxFileName

This command will behave same expect deleting the original file. So original file should be kept as it is.
2. Uncompress/decompress the gz file

Gunzip fileName.gz

This will unzip the filename.gz and get the original file before using gzip command

3.Compression multiple files in a directory

Gzip -r directoryname

using -r option, recursively traverse all the files, meaning all the files in current directory including all the files subdirectory and create a directoryname.gz which contains all the files in the current directory and subdirectory
After compression, total size of the files is approximately 20% less gz file.

3. Uncompress/decompress the gz file into multiple files

Gunzip -r fileName.gz

This will unzip the filename.gz into the the multiple original files before using gzip -r command

4.Compression files fastly:-

Gzip -1 filename.txt
Gzip –fast filename.txt

The both above options compress filename.txt very fast and create filename.txt.gz folder

5.Compression files fastly:-

Gzip -9 filename.txt
Gzip –best filename.txt

The both above options compress filename.txt files slowly and create filename.txt.gz folder

Advanced gzip examples:-

6.zip each file in the current directory and creating separate gz

for filename in *.txt; do gzip -c “$filename” > “$filename.gz”;

let us say we have file1.txt,file2.txt,file3.txt in the current directory /tmp/directory. To do this, we have to iterate each file and do the gzip command redirect(>) the output as gz file
The above command create file1.txt.gz,file2.txt.gz,file3.txt.gz
-c option keep all the original files (file1.txt,file2.txt,file3.txt) and give the file to stdout console.
if we don’t specified any option, it will remove all the files, and create a gz file

Hope you got basic start for gzip with examples.

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>