Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    use Archive::Extract;
    my $ae = Archive::Extract->new( archive => 'myfile.tgz' );
    my $ok = $ae->extract or die $ae->error;
    
  2. or download this
    #!/usr/bin/env perl
    
    ...
    print "This ran after try/catch!\n";
    
    exit;