Help for this page

Select Code to Download


  1. or download this
      my $tar = Archive::Tar->new;
      foreach $file (@files) {
    ...
      }
      $tar->write( "foo.tar" );
    
  2. or download this
      my $tar = Archive::Tar->new;
      $tar->add_files( @files );
      $tar->write( "foo.tar" );