sub main { htmlhead ("IP Tabelle"); tablehead; file2table ("ip xxx"); tablefoot; htmlfoot; } sub htmlhead { print "$1\n"; } sub htmlfoot { print ""; } sub file2table { } sub tablehead { print ""; } sub tablefoot { print "
"; } main;