Rob Dixon wrote:
> sub alert
> {
> seek FILEIN, 0, SEEK_SET;
>
> while( <filein> )
Of course, that should be
while (<FILEIN>)
> {
> # does some thing on pattern matching
> }
> }
Rob
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
