node.js에서 shell 명령을 실행하여 출력을 가져옵니다. node.js에서 유닉스 terminal 명령어의 출력을 얻는 방법을 찾고 싶습니다.이것을 할 수 있는 방법이 없을까요? function getCommandOutput(commandString){ // now how can I implement this function? // getCommandOutput("ls") should print the terminal output of the shell command "ls" } 이것은 제가 현재 진행 중인 프로젝트에서 사용하고 있는 방법입니다. var exec = require('child_process').exec; function execute(command, callback){ exec(c..