067: my $countfile = 'kontaktcount.txt'; 068: my $count = `cat $countfile`; 069: chop($count); 070: $count = $count + 1; 071: open (INF, ">$countfile") || die "Kann Countfile nicht öffnen: $!"; 072: print INF "$count\n"; 073: close (INF);