use strict; use warnings; my @output = `./a_program.out -f someparam`; # line 217 # This also does not work # my @output = `home/myname/MyPerl/src/a_program.out -f someparam`; chomp @output; # do something with @output # Rest of the code