Help for this page

Select Code to Download


  1. or download this
    unless ($G)
    {
    ...
       die "$usage";
     }
    }
    
  2. or download this
     if (!($P) && $shifted =~ /\w/)
     {
    ...
     {
       die "$usage";
     }
    
  3. or download this
    foreach(sort keys %switches) {
      ${$_}= "$switches{$_}";
    ...
      if ($switches{$_} eq '0') { print " (OFF)" if $D; }
      print "\n" if $D;
    }
    
  4. or download this
    foreach(sort keys %switches) {
      ${$_}= "$switches{$_}";
    ...
        print "\n";
      }
    }
    
  5. or download this
      $G ?
        ( $extra = " ***GAPS***" )
    ...
        ( $H ? print "WIDTH\tCOUNT\tSPOON$extra\n" : 0 )
        :
        ( $H ? print "WIDTH\tCOUNT$extra\n" : 0 );
    
  6. or download this
      $extra = 
        $G
    ...
        $S
          ? "WIDTH\tCOUNT\tSPOON$extra\n")
          : "WIDTH\tCOUNT$extra\n";
    
  7. or download this
        $S ? "$_\t$seen{$_}{count}\t$seen{$_}{spoon}\n" : print "$_\t$seen
    +{$_}{count}\n";