Help for this page

Select Code to Download


  1. or download this
    open(F, "grep 'WARNING<\/font>' $mydir/$myfile".".|wc|awk '{print \$1}
    +'| ") ;
             while (<F>) {
    ...
                $received_warn=$_;
            }
        close F;
    
  2. or download this
    $a = 'a';
    if ($a == 'b' or $a == 'c') {
        print "True\n";
    }
    
  3. or download this
    if ($a = 'b') {
        print "True\n";
    }