Help for this page

Select Code to Download


  1. or download this
    [myuser@dev2 ~]# file /tmp/test.zip 
    /tmp/test.zip: Zip archive data, at least v2.0 to extract
    ...
     14741504  09-07-10 17:08   RGB_TEST.indd
     --------                   -------
    106326801                   10 files
    
  2. or download this
    [myuser@dev2 ~]# ./showZipContents.pl
    RGB_DSC08815.jpg
    RGB_fly43337.jpg
    Error processing /tmp/test.zip:
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        print "$filename\n" ; 
    }
    die "Error processing $zipfile: $!\n" if $status < 0 ;