my @found = (); sub wanted { if ($File::Find::name =~ /blahblubb\.log/) { push @found, $File::Find::name; } } say "Datei: $_" for @found;