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