diff --git a/doc/api/child_process.md b/doc/api/child_process.md index fe265afc122049..a01b0db9b25a8f 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -82,7 +82,8 @@ be launched using [`child_process.execFile()`][]. When running on Windows, `.bat and `.cmd` files can be invoked using [`child_process.spawn()`][] with the `shell` option set, with [`child_process.exec()`][], or by spawning `cmd.exe` and passing the `.bat` or `.cmd` file as an argument (which is what the `shell` option and -[`child_process.exec()`][] do). +[`child_process.exec()`][] do). In any case, if the script filename contains +spaces it needs to be quoted. ```js // On Windows Only ... @@ -110,6 +111,13 @@ exec('my.bat', (err, stdout, stderr) => { } console.log(stdout); }); + +// Script with spaces in the filename: +const bat = spawn('"my script.cmd"', ['a', 'b'], { shell:true }); +// or: +exec('"my script.cmd" a b', (err, stdout, stderr) => { + // ... +}); ``` ### child_process.exec(command[, options][, callback])