Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: foreach loop to untar multiple files

by stevieb (Canon)
on Nov 13, 2015 at 16:37 UTC ( [id://1147674]=note: print w/replies, xml ) Need Help??


in reply to foreach loop to untar multiple files

Other Monks have pointed out the errs in your ways, so I won't go there, I'll just expand... I would personally use Archive::Extract so your code doesn't have to shell out. Said module has been part of perl's core since pre-v5.10. Also note that I use a file glob (<*.ext>) to slurp in the file names, which retain their full path information (this eliminates another system call (ls)). Here's an example:

use warnings; use strict; use Archive::Extract; my $inputs = "~/inputs"; my $results = "/home/steve/results"; my @files = <$inputs/*.tar.gz>; for (@files){ my $ae = Archive::Extract->new(archive => $_); $ae->extract(to => $results) or die "couldn't decompress the damned $_ file!: " . $ae->error; print "decompressed $_\n"; }

For some reason, extract() wouldn't recognize the homedir shortcut, so I just entered in the full path. I'm sure it can expand it somehow, I just don't have the time to troubleshoot.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (2)
As of 2024-04-26 05:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found