http://qs321.pair.com?node_id=486321


in reply to Re: Untaring with perl
in thread Untaring with perl

could anything.tgz be a variable?
$tar->read('$tar_file",1, { 'extract' => 1 });
I could not get it to work passing a variable...ideas?
thanks

Replies are listed 'Best First'.
Re^3: Untaring with perl
by gryphon (Abbot) on Aug 24, 2005 at 20:00 UTC

    Greetings mrbbq,

    You have a single-quote just before $tar_file that doesn't match the double-quote at the end. You should either change the single to a double, or (and better) just drop the quotes.

    use strict; my $tar_file = 'anything.tgz'; $tar->read( $tar_file, 1, { 'extract' => 1 } );

    gryphon
    Whitepages.com Development Manager (DSMS)
    code('Perl') || die;