@ -308,7 +308,7 @@ added: v0.1.90
'/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be
'/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be
specified as a string. The shell should understand the `-c` switch on UNIX,
specified as a string. The shell should understand the `-c` switch on UNIX,
or `/s /c` on Windows. Defaults to `false` (no shell).
or `/s /c` on Windows. Defaults to `false` (no shell).
* return : {ChildProcess}
* Returns : {ChildProcess}
The `child_process.spawn()` method spawns a new process using the given
The `child_process.spawn()` method spawns a new process using the given
`command` , with command line arguments in `args` . If omitted, `args` defaults
`command` , with command line arguments in `args` . If omitted, `args` defaults
@ -567,7 +567,7 @@ added: v0.11.12
* `maxBuffer` {Number} largest amount of data (in bytes) allowed on stdout or
* `maxBuffer` {Number} largest amount of data (in bytes) allowed on stdout or
stderr - if exceeded child process is killed
stderr - if exceeded child process is killed
* `encoding` {String} The encoding used for all stdio inputs and outputs. (Default: 'buffer')
* `encoding` {String} The encoding used for all stdio inputs and outputs. (Default: 'buffer')
* return : {Buffer|String} The stdout from the command
* Returns : {Buffer|String} The stdout from the command
The `child_process.execFileSync()` method is generally identical to
The `child_process.execFileSync()` method is generally identical to
`child_process.execFile()` with the exception that the method will not return
`child_process.execFile()` with the exception that the method will not return
@ -606,7 +606,7 @@ added: v0.11.12
* `maxBuffer` {Number} largest amount of data (in bytes) allowed on stdout or
* `maxBuffer` {Number} largest amount of data (in bytes) allowed on stdout or
stderr - if exceeded child process is killed
stderr - if exceeded child process is killed
* `encoding` {String} The encoding used for all stdio inputs and outputs. (Default: 'buffer')
* `encoding` {String} The encoding used for all stdio inputs and outputs. (Default: 'buffer')
* return : {Buffer|String} The stdout from the command
* Returns : {Buffer|String} The stdout from the command
The `child_process.execSync()` method is generally identical to
The `child_process.execSync()` method is generally identical to
`child_process.exec()` with the exception that the method will not return until
`child_process.exec()` with the exception that the method will not return until
@ -644,7 +644,7 @@ added: v0.11.12
'/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be
'/bin/sh' on UNIX, and 'cmd.exe' on Windows. A different shell can be
specified as a string. The shell should understand the `-c` switch on UNIX,
specified as a string. The shell should understand the `-c` switch on UNIX,
or `/s /c` on Windows. Defaults to `false` (no shell).
or `/s /c` on Windows. Defaults to `false` (no shell).
* return : {Object}
* Returns : {Object}
* `pid` {Number} Pid of the child process
* `pid` {Number} Pid of the child process
* `output` {Array} Array of results from stdio output
* `output` {Array} Array of results from stdio output
* `stdout` {Buffer|String} The contents of `output[1]`
* `stdout` {Buffer|String} The contents of `output[1]`