const execSync = require('child_process').execSync; try { let options = {stdio : 'pipe' }; let stdout = execSync('echo hello' , options); ...
確定! 回上一頁