Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

1
  • "will use a shell to execute a command if it didn't execute immediately" they will only do that if execve(2) failed with an ENOEXEC error (NOT with any other errors). That's the behaviour of the execvp(2) library function (which perl is using). On some systems (not on linux) execvp will also retry (with the same path) on ETXTBSY. Commented Oct 27, 2020 at 9:21