Answers for "run sudo commands in script"

6

node run shell command

// You can use 'exec' this way

const { exec } = require("child_process");

exec("ls -la", (error, stdout, stderr) => {
    if (error) {
        console.log(`error: ${error.message}`);
        return;
    }
    if (stderr) {
        console.log(`stderr: ${stderr}`);
        return;
    }
    console.log(`stdout: ${stdout}`);
});
Posted by: Guest on April-20-2020
3

how to run linux command in python

import os
cmd = 'your command here'
os.system(cmd)
Posted by: Guest on May-18-2020

Code answers related to "run sudo commands in script"

Python Answers by Framework

Browse Popular Code Answers by Language