如何使用 nodejs 运行 shell 脚本文件?

新手上路,请多包涵

我需要使用执行一组 Cassandra DB 命令的 nodeJS 运行 shell 脚本文件。任何人都可以帮我解决这个问题。

在 db.sh 文件中:

 create keyspace dummy with   replication = {'class':'SimpleStrategy','replication_factor':3}

create table dummy (userhandle text, email text primary key , name text,profilepic)

原文由 programoholic 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 2.2k
2 个回答

您可以使用 shelljs 模块 执行任何 shell 命令

 const shell = require('shelljs')

 shell.exec('./path_to_your_file')

原文由 Mustafa Mamun 发布,翻译遵循 CC BY-SA 4.0 许可协议

您可以使用 nodejs 的“子进程”模块在 nodejs 中执行任何 shell 命令或脚本。让我举个例子,我在 nodejs 中运行一个 shell 脚本(hi.sh)。

嗨.sh

 echo "Hi There!"

node_program.js

 const { exec } = require('child_process');
var yourscript = exec('sh hi.sh',
        (error, stdout, stderr) => {
            console.log(stdout);
            console.log(stderr);
            if (error !== null) {
                console.log(`exec error: ${error}`);
            }
        });

在这里,当我运行 nodejs 文件时,它将执行 shell 文件,输出将是:

node node_program.js

输出

Hi There!

您可以通过在 exec 回调中提及shell命令或shell脚本来执行任何脚本。

希望这可以帮助!快乐编码:)

原文由 Sravan 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题