Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: perl OPEN function and zless

by betterworld (Curate)
on Jul 14, 2011 at 21:02 UTC ( [id://914441]=note: print w/replies, xml ) Need Help??


in reply to perl OPEN function and zless

Why would you want to read from zless? It's a pager, which is designed to scroll through a gzipped file (on a terminal). Better choices are 'gunzip' or 'zcat' (maybe look at the man pages).

To use these tools with "open", you need to use "-|" rather than "<". perldoc -f open will tell you more about it.

Searching CPAN for gzip might also help. IO::Uncompress::Gunzip is installed with perl by default.

Replies are listed 'Best First'.
Re^2: perl OPEN function and zless
by legendx (Acolyte) on Jul 15, 2011 at 15:16 UTC
    Thanks,
    I used this to get it to work:
    open(FILE, '-|', "gunzip -c $filename"); while (FILE) { ..do action.. }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://914441]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-19 15:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found