Help for this page

Select Code to Download


  1. or download this
    foreach (@array) {           # means foreach $_ (@array) {
      next unless /^\/:swiss\|/; # means next unless $_ =~ /^\/:swiss\|/;
      print;                     # means print $_;
    }
    
  2. or download this
    -- 
    Joost       downtime n. The period during which a system
                is error-free and immune from user input.