Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Archive::Tar

by graff (Chancellor)
on Jun 01, 2004 at 04:06 UTC ( [id://357923]=modulereview: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $tar_obj = Archive::Tar->new;
    $tar_obj->read( "my.tar")
    
    # or just: my $tar_obj = Archive::Tar->new( "my.tar" );
    
  2. or download this
    use Archive::Tar;
    
    ...
        my $filedata = $tar->get_content( $filename );
        # do other stuff...
    }
    
  3. or download this
    use Archive::Tar;
    
    ...
        my $data = $file->get_content;  # same as above, but no searching 
    +involved
        # do other stuff...
    }
    
  4. or download this
    my %cksums;
    
    ...
          $cksum{$file->cksum} = undef; # keep track of cksums
       }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-03-28 18:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found