> Someone mentioned Perl.  Try the following little Perl snippet:
 
>       #!/usr/bin/perl
> 
>       print "<TABLE>\n";
>       while (defined($line = <STDIN>)) {
>           chomp $line;
>           print "<TR><TD>" . join("</TD><TD>", split(/;/, $line)) .
>               "</TD></TR>\n";
>       }
>       print "</TABLE>\n";

Yes, this is exactly what I was thinking about :-)

Simon

Attachment: signature.asc
Description: Digital signature

_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to