command-execute
Advanced tools
Comparing version 1.0.0-rc1.3 to 1.0.0-rc1.4
{ | ||
"name": "command-execute", | ||
"version": "1.0.0-rc1.3", | ||
"version": "1.0.0-rc1.4", | ||
"description": "A little utility for running shell/cmd/powershell command in node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -8,3 +8,3 @@ # Command-execute | ||
const exec = require('command-execute'); | ||
exec (command,stdoutPath,stderrPath) //If you don't use stdoutPath and/or stderrPath, it would defaultly use console.out() to output the contnent. | ||
exec.exec(command,stdoutPath,stderrPath) //If you don't use stdoutPath and/or stderrPath, it would defaultly use console.out() to output the contnent. | ||
``` |
1666