If the child_process module methods are in scope, what is a current way to execute the command ps -ef using a child process?
fork("ps -ef")
spawn("ps -ef")
exec("ps", "-ef")
exec("ps -ef")