my $countfile = 'kontaktcount.txt'; my $count; open(COUNT, '<', $countfile) or die $!; my $count = ; close(COUNT); chomp($count); open(COUNT, '>', $countfile) or die $!; print ++$count; close(COUNT);