Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
8k views

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

I also found this link. But I was wondering if there is any ready made command line solution?
4
votes
4answers
244 views

GZIP file Total length in C#

I have a zipped file having size of several GBs, I want to get the size of Unzipped contents but don't want to actually unzip the file in C#, What might be the Library I can use? When I right click on ...
4
votes
3answers
185 views

gunzip a file stream in R?

I'm trying to create an R API for StackOverflow. The output is gzipped. For example: readLines("http://api.stackoverflow.com/0.9/stats/", warn=F) [1] "\037‹\b" ...
3
votes
2answers
35 views

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 CONN.20111109.0057.gz|head CONN.20111109.0057.gz.Z: A file or directory in the path name does not ...
3
votes
2answers
135 views

cURL c++ and gunzip

I am working on a program that reads the headers from a curl perform and searches for a particular header and if found, gunzip the content part and search for another string in the content. i need to ...
3
votes
2answers
573 views

get the filesize of very large .gz file on a 64bit platform

According to the specifiction of gz the filesize is saved in the last 4bytes of a .gz file. I have created 2 files with dd if=/dev/urandom of=500M bs=1024 count=500000 dd if=/dev/urandom of=5G ...
3
votes
5answers
2k views

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 possible to open it with just one command?
2
votes
7answers
3k views

Uncompres 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://torcache.com/torrent/63ABC1435AA5CD48DCD866C6F7D5E80766034391.torrent responded HTTP/1.1 ...
2
votes
2answers
324 views

GUNZIP / Extract file “portion by portion”

I'm on a shared server with restricted disk space and i've got a gz file that super expands into a HUGE file, more than what i've got. How can I extract it "portion" by "portion (lets say 10 MB at a ...
2
votes
2answers
586 views

What is the fastest way to unzip textfiles in Matlab during a function?

I would like to scan text of textfiles in Matlab with the textscan function. Before I can open the textfile with fid = fopen('C:\path'), I need to unzip the files first. The files have the extension: ...
1
vote
1answer
137 views

Why is my programmatic compression dropping the file extension?

I am using C# to programatically compress an xml file. Compression works fine, but when I gunzip the file from the command line, the extension has been dropped. Why would this be? The destination ...
1
vote
2answers
217 views

uzing libgz to inflate a gz input

I'm currently trying to use the zlib to inflate a source of gzipped data. It seems that the inflate API in zlib cannot inflate a gzipped data ( The example http://www.zlib.net/zpipe.c fails to read a ...
1
vote
4answers
3k views

What is the best way to gunzip files with Perl?

Is there a faster solution than my actual 'zcat' solution to gunzip files with Perl? A little benchmark: #!/usr/bin/perl use strict; use warnings; use Benchmark qw(cmpthese timethese); use ...
1
vote
3answers
653 views

gunzip preform task and rezip

I want to perform this awk -F, '$1 ~ /F$/' file.dat on a whole direcory of gziped files I want to be able to loop through each file unzip it perform the above command (print out any findings) ...
0
votes
3answers
41 views

Downloading a gunzipped file over FTP

I am attempting to download a gunzipped file from an FTP server. It appears to download successfully (correct file size, etc) but when I extract the contents, it fails stating that the data-format is ...
0
votes
1answer
33 views

How to download/gunzip a file and obtain an InputStream of the actual file?

I have a url of a gzipped file. I would like to obtain an InputStream of the actual file in Java. What is the best way to achieve this?
0
votes
3answers
122 views

gunzip in javascript

An API returns large resultsets and I was wishing that I could gzip it in PHP but I wouldn't know how to gunzip it in Javascript. Is there some sort of library that is capable of this in Javascript? I ...
0
votes
5answers
777 views

Pipe multiple files (gz) into C program

I've written a C program that works when I pipe data into my program using stdin like: gunzip -c IN.gz|./a.out If I want to run my program on a list of files I can do something like: for i `cat ...
0
votes
3answers
110 views

Unzipping unfinished gzip…possible?

So I just spent a week running a simulation, but the computer had to be turned off to move it (terrible, I know). The data that was being produced was being zipped due to it's size by piping it into ...
0
votes
5answers
1k views

How can I compare file list from a tar archive and directory?

I am still learning Perl. Can anyone please suggest me the Perl code to compare files from .tar.gz and a directory path. Let's say I have tar.gz backup of following directory path which I have taken ...