#!/usr/bin/perl use strict; open TXT, "../monatshit.txt" or die "$!"; my @txt = ; close TXT; if (@txt !~ /^\n/) { print "Content-type: text/html\n\n"; print "
"; print @txt; print "
"; }