#!/usr/bin/perl ########################################### # main.pl -- Import statistic data into mysql tables ########################################### use strict; use warnings; use DBI; #used by global.pm use File::Copy; #used by global.pm use Global; #our own module for all relevant subroutines use Parameters; #our own module for global vars #=============== MAIN ===================== get_data1(); get_data2(); print "Scriptende!\n"; #=============== END MAIN =================