* Executes the provided command with the given options, returning the process * object. * * @param {string} cmd * @param {?Object=} options * @return {!Object}
(cmd, options = {'stdio': 'inherit'})
| 20 | * @return {!Object} |
| 21 | */ |
| 22 | function exec(cmd, options = {'stdio': 'inherit'}) { |
| 23 | return spawnProcess(cmd, options); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Executes the provided shell script in an asynchronous process. Special-cases |
no test coverage detected