I'm running Mavericks and the command kill -SIGUSR2 <pid> results in an error -sh: kill: SIGUSR2: invalid signal specification, however this command does work fine kill -s USR2 <pid>. May want to mention it in the docs (or if the 2nd one is compatible with other versions of kill it will probably work fine).
I'm running Mavericks and the command
kill -SIGUSR2 <pid>
results in an error-sh: kill: SIGUSR2: invalid signal specification
, however this command does work finekill -s USR2 <pid>
. May want to mention it in the docs (or if the 2nd one is compatible with other versions ofkill
it will probably work fine).