- Notifications
You must be signed in to change notification settings - Fork744
Closed
Description
I've found that I end up doing a lot of messy string concatenation withexec() commands. It would be nice to allow multiple string arguments that would be joined together with a space, such as:
exec('npm','run-script','test');// run "npm run-script test"
This could easily be backwards compatible with the current function since only the first argument is currently a string.