use strict; # consider this also use warnings; # consider this also open my $input, "-|", "./hello.exe" or die "woops: $!"; open my $output, ">", "output.txt" or die "darn: $!"; while(my $line = <$input>) { # optionally do things here print $output $line }