Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $_ = <IN>;
    print GZIP;
    
  2. or download this
    # $/ = undef;
    # leave $/ at it's default value...
    ...
    while (<IN>) {
        print GZIP;
    }