-1

I have a command

my $output = `somecommand parm1 parm2`;

When I try to run this Perl script I get the message

Can't exec "somecommand" at .....

It seems it is not seeing anything past the first space in between the backticks. I have a friend who runs this in a different environment and it runs fine.

What could I have in my environment that would cause this? I am running Perl v5.20 but so is my friend.

Borodin
  • 126,100
  • 9
  • 70
  • 144

1 Answers1

5

Perl's not ignoring the command parameters, it's just mentioning only the part of the command that it has a problem with -- it can't find somecommand

Whatever your somecommand is, it's not a shell command and it's not in a directory listed in your PATH variable

Change PATH to add its location to the end and it will work for you. You can do that system-wide or you dan modify it temporarily in your Perl code by manipulating $ENV{PATH} before you run the command

Borodin
  • 126,100
  • 9
  • 70
  • 144