@@ -131,9 +131,6 @@ exec('"my script.cmd" a b', (err, stdout, stderr) => {
131
131
<!-- YAML
132
132
added: v0.1.90
133
133
changes:
134
- - version: v11.0.0
135
- pr-url: https://github.com/nodejs/node/pull/21316
136
- description: The `windowsHide` option now defaults to `true`.
137
134
- version: v8.8.0
138
135
pr-url: https://github.com/nodejs/node/pull/15380
139
136
description: The `windowsHide` option is supported now.
@@ -156,7 +153,7 @@ changes:
156
153
* ` uid ` {number} Sets the user identity of the process (see setuid(2)).
157
154
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
158
155
* ` windowsHide ` {boolean} Hide the subprocess console window that would
159
- normally be created on Windows systems. ** Default:** ` true ` .
156
+ normally be created on Windows systems. ** Default:** ` false ` .
160
157
* ` callback ` {Function} called with the output when process terminates.
161
158
* ` error ` {Error}
162
159
* ` stdout ` {string|Buffer}
@@ -235,9 +232,6 @@ lsExample();
235
232
<!-- YAML
236
233
added: v0.1.91
237
234
changes:
238
- - version: v11.0.0
239
- pr-url: https://github.com/nodejs/node/pull/21316
240
- description: The `windowsHide` option now defaults to `true`.
241
235
- version: v8.8.0
242
236
pr-url: https://github.com/nodejs/node/pull/15380
243
237
description: The `windowsHide` option is supported now.
@@ -257,7 +251,7 @@ changes:
257
251
* ` uid ` {number} Sets the user identity of the process (see setuid(2)).
258
252
* ` gid ` {number} Sets the group identity of the process (see setgid(2)).
259
253
* ` windowsHide ` {boolean} Hide the subprocess console window that would
260
- normally be created on Windows systems. ** Default:** ` true ` .
254
+ normally be created on Windows systems. ** Default:** ` false ` .
261
255
* ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
262
256
done on Windows. Ignored on Unix. ** Default:** ` false ` .
263
257
* ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
@@ -381,9 +375,6 @@ The `shell` option available in [`child_process.spawn()`][] is not supported by
381
375
<!-- YAML
382
376
added: v0.1.90
383
377
changes:
384
- - version: v11.0.0
385
- pr-url: https://github.com/nodejs/node/pull/21316
386
- description: The `windowsHide` option now defaults to `true`.
387
378
- version: v8.8.0
388
379
pr-url: https://github.com/nodejs/node/pull/15380
389
380
description: The `windowsHide` option is supported now.
@@ -417,7 +408,7 @@ changes:
417
408
done on Windows. Ignored on Unix. This is set to ` true ` automatically
418
409
when ` shell ` is specified and is CMD. ** Default:** ` false ` .
419
410
* ` windowsHide ` {boolean} Hide the subprocess console window that would
420
- normally be created on Windows systems. ** Default:** ` true ` .
411
+ normally be created on Windows systems. ** Default:** ` false ` .
421
412
* Returns: {ChildProcess}
422
413
423
414
The ` child_process.spawn() ` method spawns a new process using the given
@@ -690,9 +681,6 @@ changes:
690
681
pr-url: https://github.com/nodejs/node/pull/22409
691
682
description: The `input` option can now be any `TypedArray` or a
692
683
`DataView`.
693
- - version: v11.0.0
694
- pr-url: https://github.com/nodejs/node/pull/21316
695
- description: The `windowsHide` option now defaults to `true`.
696
684
- version: v8.8.0
697
685
pr-url: https://github.com/nodejs/node/pull/15380
698
686
description: The `windowsHide` option is supported now.
@@ -727,7 +715,7 @@ changes:
727
715
* ` encoding ` {string} The encoding used for all stdio inputs and outputs.
728
716
** Default:** ` 'buffer' ` .
729
717
* ` windowsHide ` {boolean} Hide the subprocess console window that would
730
- normally be created on Windows systems. ** Default:** ` true ` .
718
+ normally be created on Windows systems. ** Default:** ` false ` .
731
719
* ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
732
720
` '/bin/sh' ` on UNIX, and ` process.env.ComSpec ` on Windows. A different
733
721
shell can be specified as a string. See [ Shell Requirements] [ ] and
@@ -760,9 +748,6 @@ changes:
760
748
pr-url: https://github.com/nodejs/node/pull/22409
761
749
description: The `input` option can now be any `TypedArray` or a
762
750
`DataView`.
763
- - version: v11.0.0
764
- pr-url: https://github.com/nodejs/node/pull/21316
765
- description: The `windowsHide` option now defaults to `true`.
766
751
- version: v8.8.0
767
752
pr-url: https://github.com/nodejs/node/pull/15380
768
753
description: The `windowsHide` option is supported now.
@@ -796,7 +781,7 @@ changes:
796
781
* ` encoding ` {string} The encoding used for all stdio inputs and outputs.
797
782
** Default:** ` 'buffer' ` .
798
783
* ` windowsHide ` {boolean} Hide the subprocess console window that would
799
- normally be created on Windows systems. ** Default:** ` true ` .
784
+ normally be created on Windows systems. ** Default:** ` false ` .
800
785
* Returns: {Buffer|string} The stdout from the command.
801
786
802
787
The ` child_process.execSync() ` method is generally identical to
@@ -822,9 +807,6 @@ changes:
822
807
pr-url: https://github.com/nodejs/node/pull/22409
823
808
description: The `input` option can now be any `TypedArray` or a
824
809
`DataView`.
825
- - version: v11.0.0
826
- pr-url: https://github.com/nodejs/node/pull/21316
827
- description: The `windowsHide` option now defaults to `true`.
828
810
- version: v8.8.0
829
811
pr-url: https://github.com/nodejs/node/pull/15380
830
812
description: The `windowsHide` option is supported now.
@@ -869,7 +851,7 @@ changes:
869
851
done on Windows. Ignored on Unix. This is set to ` true ` automatically
870
852
when ` shell ` is specified and is CMD. ** Default:** ` false ` .
871
853
* ` windowsHide ` {boolean} Hide the subprocess console window that would
872
- normally be created on Windows systems. ** Default:** ` true ` .
854
+ normally be created on Windows systems. ** Default:** ` false ` .
873
855
* Returns: {Object}
874
856
* ` pid ` {number} Pid of the child process.
875
857
* ` output ` {Array} Array of results from stdio output.
0 commit comments