#!/usr/bin/perl use strict; use warnings; use CGI qw( :all ); use CGI::Carp qw(fatalsToBrowser); my $cgi = new CGI; my $links = '/SAN/content/cgi-bin/links'; open (INFO, '<', $links) or die "Fehler beim Oefnen von $links: $! "; print $cgi->header('text/html'); print $cgi->start_html(); while (my $zeile = ) { print $cgi->p('',$cgi->a({-href => $zeile},$zeile)); } close (INFO); print $cgi->end_html(); 1;