Help for this page

Select Code to Download


  1. or download this
    my $date =`/bin/date +'%m%d%y'`;
    chomp $date;
    ...
      die "This should never happen: $perldate != $date" 
          if $perldate ne $date;
    }
    
  2. or download this
    while (<HANDLE>) {
        next unless ( /FREEZING media id (.*)/ );
        print "I am FREEZING $1\n";
    }