-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
shelljs-exec-proxy is awesome but I can't get this to work:
shell.curl('google.com', {silent:true});
or:
shell.curl('google.com', function(code, stdout, stderr) {
console.log('Exit code:', code);
console.log('Program output:', stdout);
console.log('Program stderr:', stderr);
});
Are these possible, and if so, can you update the documentation with examples of how to call them? Thanx!