@@ -146,7 +146,7 @@ changes:
146
146
* ` encoding ` {string} ** Default:** ` 'utf8' `
147
147
* ` shell ` {string} Shell to execute the command with. See
148
148
[ Shell Requirements] [ ] and [ Default Windows Shell] [ ] . ** Default:**
149
- ` '/bin/sh' ` on UNIX , ` process.env.ComSpec ` on Windows.
149
+ ` '/bin/sh' ` on Unix , ` process.env.ComSpec ` on Windows.
150
150
* ` timeout ` {number} ** Default:** ` 0 `
151
151
* ` maxBuffer ` {number} Largest amount of data in bytes allowed on stdout or
152
152
stderr. If exceeded, the child process is terminated and any output is
@@ -260,7 +260,7 @@ changes:
260
260
* ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
261
261
done on Windows. Ignored on Unix. ** Default:** ` false ` .
262
262
* ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
263
- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
263
+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
264
264
shell can be specified as a string. See [ Shell Requirements] [ ] and
265
265
[ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
266
266
* ` callback ` {Function} Called with the output when process terminates.
@@ -411,7 +411,7 @@ changes:
411
411
* ` uid ` {number} Sets the user identity of the process (see setuid(2)).
412
412
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
413
413
* ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
414
- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
414
+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
415
415
shell can be specified as a string. See [ Shell Requirements] [ ] and
416
416
[ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
417
417
* ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
@@ -666,7 +666,7 @@ child registers an event handler for the [`'disconnect'`][] event
666
666
or the [ ` 'message' ` ] [ ] event. This allows the child to exit
667
667
normally without the process being held open by the open IPC channel.*
668
668
669
- On UNIX -like operating systems, the [ ` child_process.spawn() ` ] [ ] method
669
+ On Unix -like operating systems, the [ ` child_process.spawn() ` ] [ ] method
670
670
performs memory operations synchronously before decoupling the event loop
671
671
from the child. Applications with a large memory footprint may find frequent
672
672
[ ` child_process.spawn() ` ] [ ] calls to be a bottleneck. For more information,
@@ -729,7 +729,7 @@ changes:
729
729
* ` windowsHide ` {boolean} Hide the subprocess console window that would
730
730
normally be created on Windows systems. ** Default:** ` false ` .
731
731
* ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
732
- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
732
+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
733
733
shell can be specified as a string. See [ Shell Requirements] [ ] and
734
734
[ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
735
735
* Returns: {Buffer|string} The stdout from the command.
@@ -780,7 +780,7 @@ changes:
780
780
* ` env ` {Object} Environment key-value pairs.
781
781
* ` shell ` {string} Shell to execute the command with. See
782
782
[ Shell Requirements] [ ] and [ Default Windows Shell] [ ] . ** Default:**
783
- ` '/bin/sh' ` on UNIX , ` process.env.ComSpec ` on Windows.
783
+ ` '/bin/sh' ` on Unix , ` process.env.ComSpec ` on Windows.
784
784
* ` uid ` {number} Sets the user identity of the process. (See setuid(2)).
785
785
* ` gid ` {number} Sets the group identity of the process. (See setgid(2)).
786
786
* ` timeout ` {number} In milliseconds the maximum amount of time the process
@@ -858,7 +858,7 @@ changes:
858
858
* ` encoding ` {string} The encoding used for all stdio inputs and outputs.
859
859
** Default:** ` 'buffer' ` .
860
860
* ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
861
- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
861
+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
862
862
shell can be specified as a string. See [ Shell Requirements] [ ] and
863
863
[ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
864
864
* ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
@@ -1255,7 +1255,7 @@ can be handled by the parent and some by the child.
1255
1255
While the example above uses a server created using the ` net ` module, ` dgram `
1256
1256
module servers use exactly the same workflow with the exceptions of listening on
1257
1257
a ` 'message' ` event instead of ` 'connection' ` and using ` server.bind() ` instead
1258
- of ` server.listen() ` . This is, however, currently only supported on UNIX
1258
+ of ` server.listen() ` . This is, however, currently only supported on Unix
1259
1259
platforms.
1260
1260
1261
1261
#### Example: sending a socket object
0 commit comments