empserver/info/ls2html.pl
Markus Armbruster e7c9ca1186 (info.html/all.html): Fix to use the full 80 columns for the table.
(info.nr/all): Fix race between ls and output redirection.
2007-08-08 06:15:33 +00:00

11 lines
165 B
Perl

#!/usr/local/bin/perl
use strict;
use warnings;
printf("<pre>\n");
while (<>) {
s/([\w\.\-]+)/<a href=\"$1.html\">$1<\/a>/g;
print;
}
printf("</pre>\n");