I'm trying to create a Firefox add-on that can automatically run bash commands when you click on a specific button. (Client Side always)
For now I managed how to execute simple commands like ls
using:
var child_process = require("sdk/system/child_process");
var ls = child_process.spawn('/bin/ls', ['-lh', '/usr']);
My question is, can I run bash scripts? (.sh files)
for example:
#!/bin/bash
STRING="HELLO WORLD!!!"
echo $STRING
It is! Pretty easy.
var bash = child_process.spawn('/bin/sh', ['pathtobashscript']);