Help for this page

Select Code to Download


  1. or download this
    #!/bin/perl -w
    
    ...
    my $zip = Archive::Zip->new();
    my $member = $zip->addFile('t.out');
    die 'Error writing file' if $zip->writeToFileNamed('foo.zip') != AZ_OK
    +;
    
  2. or download this
    #!/bin/perl -w
    
    ...
    #do your stuff here
    #everything written to FOO gets compressed and stored in foo.gz
    print FILE "hello world\n";