We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!
The text was updated successfully, but these errors were encountered:
I don't think I ever provided support for these, but these are great feature requests.
You can get the same behavior with shell.config.silent = true. If you need other options, then you're out of luck for now.
shell.config.silent = true
Sorry, something went wrong.
No branches or pull requests
shelljs-exec-proxy is awesome but I can't get this to work:
or:
Are these possible, and if so, can you update the documentation with examples of how to call them? Thanx!
The text was updated successfully, but these errors were encountered: