Answers for "simples shell commands using nodejs"

0

bash commands in node

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}`);  
  }
});
Posted by: Guest on July-06-2021
1

running shell commands nodejs

const exec = require('child_process').exec;
const child = exec('cat *.js bad_file | wc -l',
    (error, stdout, stderr) => {
        console.log(`stdout: ${stdout}`);
        console.log(`stderr: ${stderr}`);
        if (error !== null) {
            console.log(`exec error: ${error}`);
        }
});
Posted by: Guest on December-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language