有没有办法在cd后面生成child_process.exec?
var exec = require('child_process').exec;
exec("cd /home", function(error, stdout, stderr) {
exec("cd ../", function(error, stdout, stderr) {
// cwd should be /
})
});
还是一种在回调中获得cwd的方法?
exec("cd /home", function(error, stdout, stderr, cwd) {
console.log(cwd); // should display /home
});