use strict; use warnings; open my $fh, '<', 'gibsnicht.txt' or die $!; while (<$fh>) { print qq($_); } close $fh;