* Executes the provided command, returning its stdout. * @param {string} cmd * @param {?Object=} options * @return {string}
(cmd, options)
| 46 | * @return {string} |
| 47 | */ |
| 48 | function getStdout(cmd, options) { |
| 49 | return getOutput(cmd, options).stdout; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Executes the provided command, returning its stderr. |
no test coverage detected