Re: Help with line length in script
On Thursday 08 June 2006 8:11 pm, Timothy Johnson wrote: > Here's the offending line: > > ### > $TXT .= swrite("@ @> @>",$rec, > $stats{virus}->{$rec}, $percent)."%\n" if $text; ### > > The @ part is telling format to print up to 21 > cha
RE: Help with line length in script
Here's the offending line: ### $TXT .= swrite("@ @> @>",$rec, $stats{virus}->{$rec}, $percent)."%\n" if $text; ### The @ part is telling format to print up to 21 characters of $rec and truncate the rest, left justifying it. If you wa