PHP 8.5.0 Alpha 4 available for testing

Voting

: zero plus three?
(Example: nine)

The Note You're Voting On

csh dot spam at me dot com
11 years ago
/bin/sh -c CMD will fork sh and then exec CMD.
/bin/sh -c exec CMD will NOT fork and only executes CMD.

Therefore, you can get rid of this hack by prefixing your command to "exec bla bla bla".

<< Back to user notes page

To Top