5
在node.js中执行并获取shell命令的输出
在node.js中,我想找到一种方法来获取Unix终端命令的输出。有什么办法吗? function getCommandOutput(commandString){ // now how can I implement this function? // getCommandOutput("ls") should print the terminal output of the shell command "ls" }