“Shell -Befehl mit Knoten” Code-Antworten

BASH -Befehle im Knoten veröffentlichen

const { exec } = require('child_process');
exec('ls | grep js', (err, stdout, stderr) => {  
  if (err) {    
    //some err occurred    
    console.error(err)  
  } else {   
    // the *entire* stdout and stderr (buffered)   
    console.log(`stdout: ${stdout}`);   
    console.log(`stderr: ${stderr}`);  
  }
});
Sleepy Snail

Shell -Befehl mit Knoten

const exec  = require("child_process").exec;
exec("ls -la", function (error, stdout, stderr) {
    if (error) {
        console.log("Error: " + error);
        return;
    }
    if (stderr) {
        console.log("stderr: " + stderr);
        return;
    }
    console.log("stdout: " + stdout);
});
Pleasant Partridge

Ausführen von Shell -Befehlen Nodejs

const system = require('system-commands')

system('ls').then(output => {
    console.log(output)
}).catch(error => {
    console.error(error)
})
Obedient Osprey

Ähnliche Antworten wie “Shell -Befehl mit Knoten”

Fragen ähnlich wie “Shell -Befehl mit Knoten”

Weitere verwandte Antworten zu “Shell -Befehl mit Knoten” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen