是否可以从 Firefox 运行 bash 脚本? (使用 Firefox 附加 SDK)

问题描述 投票:0回答:1

我正在尝试创建一个 Firefox 插件,当您单击特定按钮时,它可以自动运行 bash 命令。 (始终是客户端)

现在,我管理了如何使用以下命令执行简单的命令,例如

ls

var child_process = require("sdk/system/child_process");

var ls = child_process.spawn('/bin/ls', ['-lh', '/usr']);

我的问题是,我可以运行 bash 脚本吗? (.sh 文件)

例如:

#!/bin/bash
STRING="HELLO WORLD!!!"
echo $STRING
javascript bash firefox firefox-addon firefox-addon-sdk
1个回答
3
投票

是的!很简单。

var bash = child_process.spawn('/bin/sh', ['pathtobashscript']);
© www.soinside.com 2019 - 2024. All rights reserved.