在 nwjs 中使用 shelljs 执行命令?
Execute command using shelljs in nwjs?
我正尝试在 nwjs 中使用 shelljs 执行一个简单的命令,如下所示:
main.js :
var shell = require("shelljs");
var output = shell.exec("bash ./test.sh",{silent:true,async:false}).output;
console.log(output);
test.sh :
echo "Hey there"
当我在nodejs中运行上面的文件是这样的
node main.js
它没有任何问题。但是当我尝试使用 nwjs 运行 上面的代码时(假设我们已经使用 index.html 和 main.js 设置了基本的项目结构),它给了我一个错误。
[23874:1031/211359:INFO:CONSOLE(191)] ""shell.js: internal error"", source: node_modules/shelljs/src/common.js (191)
[23874:1031/211359:INFO:CONSOLE(192)] ""Error: ENOENT: no such file or directory, open '/tmp/shelljs_b656f0ddaa7c3b096e97'\n at Error (native)\n at Object.fs.openSync (fs.js:540:18)\n at Object.fs.readFileSync (fs.js:392:15)\n at execSync (node_modules/shelljs/src/exec.js:109:24)\n at Object._exec (node_modules/shelljs/src/exec.js:214:12)\n at Object.exec (node_modules/shelljs/src/common.js:182:23)\n at file://main.js:33:16"", source: node_modules/shelljs/src/common.js (192)
我只想知道是否有任何解决方法或解决方案来执行代码。感谢帮助。
谢谢。
使用 test.sh 的完整路径:
var shell = require("shelljs");
var output = shell.exec("bash /path/to/test.sh",{silent:true,async:false}).output;
console.log(output);
看起来像 shelljs 在以下位置搜索文件:/tmp/shelljs_b656f0ddaa7c3b096e97
你把 test.sh 放在哪里?在nwjs附近?你是如何运行编码的?从开发工具?从项目?来自打包项目?
此外,为什么需要 shelljs? Nwjs 已经有内部 API 与 shell:
一起工作
var nwGui = require('nw.gui')
, nwShell = nwGui.Shell
, child_process = require('child_process')
, exec = child_process.exec
, execSync = child_process.execSync
, execFile = child_process.execFile
, execFileSync = child_process.execFileSync
;
var output = execSync("bash /path/to/test.sh");
console.log(output);
我正尝试在 nwjs 中使用 shelljs 执行一个简单的命令,如下所示:
main.js :
var shell = require("shelljs");
var output = shell.exec("bash ./test.sh",{silent:true,async:false}).output;
console.log(output);
test.sh :
echo "Hey there"
当我在nodejs中运行上面的文件是这样的
node main.js
它没有任何问题。但是当我尝试使用 nwjs 运行 上面的代码时(假设我们已经使用 index.html 和 main.js 设置了基本的项目结构),它给了我一个错误。
[23874:1031/211359:INFO:CONSOLE(191)] ""shell.js: internal error"", source: node_modules/shelljs/src/common.js (191)
[23874:1031/211359:INFO:CONSOLE(192)] ""Error: ENOENT: no such file or directory, open '/tmp/shelljs_b656f0ddaa7c3b096e97'\n at Error (native)\n at Object.fs.openSync (fs.js:540:18)\n at Object.fs.readFileSync (fs.js:392:15)\n at execSync (node_modules/shelljs/src/exec.js:109:24)\n at Object._exec (node_modules/shelljs/src/exec.js:214:12)\n at Object.exec (node_modules/shelljs/src/common.js:182:23)\n at file://main.js:33:16"", source: node_modules/shelljs/src/common.js (192)
我只想知道是否有任何解决方法或解决方案来执行代码。感谢帮助。
谢谢。
使用 test.sh 的完整路径:
var shell = require("shelljs");
var output = shell.exec("bash /path/to/test.sh",{silent:true,async:false}).output;
console.log(output);
看起来像 shelljs 在以下位置搜索文件:/tmp/shelljs_b656f0ddaa7c3b096e97 你把 test.sh 放在哪里?在nwjs附近?你是如何运行编码的?从开发工具?从项目?来自打包项目?
此外,为什么需要 shelljs? Nwjs 已经有内部 API 与 shell:
一起工作var nwGui = require('nw.gui')
, nwShell = nwGui.Shell
, child_process = require('child_process')
, exec = child_process.exec
, execSync = child_process.execSync
, execFile = child_process.execFile
, execFileSync = child_process.execFileSync
;
var output = execSync("bash /path/to/test.sh");
console.log(output);