first commit

This commit is contained in:
编码猿
2024-09-27 01:26:21 +08:00
commit 63459fdc40
12 changed files with 148 additions and 0 deletions

8
test.js Normal file
View File

@@ -0,0 +1,8 @@
const exec = require('child_process').exec;
exec('pwd', function(err,stdout,stderr) {
if(err) {
console.log('shell is run: '+ stderr);
} else {
console.log(stdout)
}
});