Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
762 views

find results piped to zcat and then to head

I'm trying to search for a certain string in a lot of gziped csv files, the string is located at the first row and my thought was to get the first row of each file by combining find, zcat and head. ...
4
votes
3answers
189 views

Alternate to PHP exec() function

Currently I was using exec("zcat $filename", $output) to uncompress a .Z type file but unfortunately my hosting company has now disabled this function. Is there a work around? $pathtofile = ...
4
votes
3answers
367 views

Why doesn't my Perl pipe to zcat die if the file is not there?

If my gz file does not exist, why doesn't it DIE? $ cat test.pl open(FILE, "zcat dummy.gz |") or die "DIE"; $ ./test.pl zcat: dummy.gz: No such file or directory If I read a file normally, ...
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 ...
2
votes
2answers
142 views

Using mmap with popen

I need to read in and process a bunch of ~40mb gzipped text files, and I need it done fast and with minimal i/o overhead (as the volumes are used by others as well). The fastest way I've found thus ...
2
votes
1answer
421 views

zcat files in and not in gzip format

I have all my Apache access log files as access.log, access.log.1 access.log.1.gz etc... What I want is to zcat all files in and not in gzip format and pipe them into an X program. I know I can do: ...
2
votes
5answers
1k views

zcat pipe to grep

ls -ltr|grep 'Mar 4'| awk '{print $9 }'|zcat -fq |grep 12345 I want to find all files modified on a certain date and then zcat them and search the fiels for a number string. the above doesn't ...
1
vote
4answers
841 views

zcat to grep with file name

ls -ltr|grep 'Mar 4'| awk '{print $9 }'|xargs zcat -fq |grep 12345 I'm now using this command to list the records that contain my numeric string how can i alos get this command to print the name ...
1
vote
4answers
2k views

zcat won't unzip files properly

I need to unzip a compressed file on the fly in my program. It works when I try it on my own linux computer, but for some reason the school computers fail whenever I tell them to do it. To unzip I'm ...
0
votes
2answers
32 views

llseek return ESPIPE when calling zcat all.tgz | ./cycletee

I modified GNU tee to cycletee Source Code (You can download the binary from https://github.com/vls/cycletee/tree/master/bin) What it does can be explained by the following example: seq 10 | ...
0
votes
0answers
32 views

Process substitution tcpdump script error

If I write the following command in a terminal it work perfectly tcpdump -w 1.pcap -nnr <( zcat /work/save1.pcap.gz ) '((tcp[13]==2 or tcp[13]==4) and (dst port 80)) or (udp and dst port 5060)' ...
0
votes
2answers
336 views

Segmentation fault 11, zcat pipe into postgresql 9.0.5 (Lion)

I have a bash script as such: GITUSER="mygituser" DBUSER="mysitedbuser" DB="mysitedb" SITE="mysite.com" REPO="/var/git/myproject.git" # on the server dropdb -U $DBUSER $DB && echo "remote db ...
0
votes
2answers
306 views

Using zcat in windows

I have a big XML file which was splited in unix. I got a readme file saying: zcat FILE.xml.part1.gz File.xml.part2.gz > File.xml should connect them into one parsable XML file. The separation is ...