node-ipc/node_modules/node-cmd/example/basic.js
2014-09-02 23:25:35 -07:00

17 lines
No EOL
297 B
JavaScript

var cmd=require('../cmd.js');
cmd.get(
'pwd',
function(data){
console.log('the current working dir is : ',data)
}
);
cmd.run('touch example.created.file');
cmd.get(
'ls',
function(data){
console.log('the current dir contains these files :\n\n',data)
}
);