Help for this page

Select Code to Download


  1. or download this
    for($i=$addr;$i<$saddr;$i++)
    {
        print TEMP "\n"
    }
    
  2. or download this
    print TEMP $/ for $addr .. $saddr - 1;
    
  3. or download this
    $x=~s/...//g;
    
  4. or download this
    $x =~ s/...//g;
    
  5. or download this
    open(ITEMP,"/tmp/scresult.tmp");
    @data=<ITEMP>;
    ...
            $sc.="\"\n\t\""
        }
    }
    
  6. or download this
    open( TEMP, "</tmp/scresult.tmp" )
        or die "Cannot open: $!\";
    ...
    }
    
    close TEMP;