In un node.js, vorrei trovare un modo per ottenere l'output di un comando da terminale Unix. C'è un modo per fare questo?
function getCommandOutput(commandString){
// now how can I implement this function?
// getCommandOutput("ls") should print the terminal output of the shell command "ls"
}