-
通过node-http-shell,在HTTP GET请求中执行shell脚本并获取其结果
资源介绍
节点-http-shell
在浏览器中获取 shell 脚本输出
$ npm install
$ npm start
用法 1
非常容易修改和实施。 查找配置文件app/http.json 。
type -> 选项exec & spawn
cmd -> 运行指定的命令
url -> 发布输出的 url
你很高兴去。
用法2
用于更大的流式输出
var app = require ( 'express' ) ( ) ;
var spawnProcess = require ( "../app/spawn_process.js" ) ;
var commandStr = "sh shell_scripts/temp.sh" ; //Shell script command will be executed.
app . get ( "test-spawn" , function