Top "Gunzip" questions

The gzip program compresses and decompresses files using Lempel-Ziv coding (LZ77).

How to check if a Unix .tar.gz file is a valid file without uncompressing?

I have found the question How to determine if data is valid tar file without a file?, but I was …

gzip validation tar gunzip
Extract and delete all .gz in a directory- Linux

I have a directory. It has about 500K .gz files. How can I extract all .gz in that directory and …

linux gzip extract gunzip
How to get few lines from a .gz compressed file without uncompressing

How to get the first few lines from a gziped file ? I tried zcat, but its throwing an error zcat …

gzip gunzip zcat
Opening a .tar.gz file with a single command

When I download a .tar.gz file, I open it with two commands, first gunzip and then tar. Is it …

linux gzip tar gunzip
Uncompress a gzip file from CURL, on php

Does anyone know how to uncompress the contents of a gzip file that i got with curl? for example: http://…

php curl gzip gunzip
Cleaner way to read/gunzip a huge file in python

So I have some fairly gigantic .gz files - we're talking 10 to 20 gb each when decompressed. I need to loop …

python gzip subprocess gunzip
how to decompress with pigz

I am trying to use pigz for parallel compress and decompress. I have found a way to compress in parallel …

compression tar gunzip
Compress a string to gzip in Java

public static String compressString(String str) throws IOException{ if (str == null || str.length() == 0) { return str; } ByteArrayOutputStream out = new ByteArrayOutputStream(); GZIPOutputStream …

java gzip gunzip
Is there any way to show progress on a `gunzip < database.sql.gz | mysql ...` process?

Once a week I need to run a giant database update into my local development environment like so: $ gunzip < /…

mysql sql progress sql-insert gunzip
How to copy and extract .gz files using python

I am just starting to learn python and have a question. How to create a script to do following: ( will …

python linux backup directory gunzip