“Cómo ejecutar un script bash con el nodo JS” Código de respuesta

Ejecutar el programa bash usando js

function exec(cmd, handler = function(error, stdout, stderr){console.log(stdout);if(error !== null){console.log(stderr)}})
{
    const childfork = require('child_process');
    return childfork.exec(cmd, handler);
}
exec('echo test');
Blue-eyed Bug

Cómo ejecutar un script bash con el nodo JS

const exec = require('child_process').exec, child;
const myShellScript = exec('sh doSomething.sh /myDir');
myShellScript.stdout.on('data', (data)=>{
    console.log(data); 
    // do whatever you want here with data
});
myShellScript.stderr.on('data', (data)=>{
    console.error(data);
});
Anthony Smith

Respuestas similares a “Cómo ejecutar un script bash con el nodo JS”

Preguntas similares a “Cómo ejecutar un script bash con el nodo JS”

Más respuestas relacionadas con “Cómo ejecutar un script bash con el nodo JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código