Coder Social home page Coder Social logo

Comments (10)

jorangreef avatar jorangreef commented on July 22, 2024

The idea behind sudo-prompt is to prefix a command with "sudo" but show an os dialog if permissions would be necessary.

So, sudo-prompt at the moment would take your command above and run:

sudo echo 'some text' > /Library/some-file.txt

...but it would also take care of the os prompt along the way.

The issue at the moment if I understand correctly is that calling that command using sudo also fails:

 $ sudo echo 'some text' > /Library/some-file.txt
-bash: /Library/some-file.txt: Permission denied

The echo 'some text' is run using sudo, but the redirection to /Library is not.

The bash -c trick is a good idea. I am not sure how this would affect propagating command errors out of the bash shell. I will give it a try and see if we can make the changes.

from sudo-prompt.

davej avatar davej commented on July 22, 2024

Yup that's it.

After some basic testing, stdout and stderr both propagate up to the node callback exactly as expected.

If you like I can make a PR?

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

Thanks that would be great.

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

Does the exit code also propagate?

from sudo-prompt.

davej avatar davej commented on July 22, 2024

I presume so but I haven't tested that, I'll give it a test when I have a few spare minutes.

from sudo-prompt.

davej avatar davej commented on July 22, 2024

Just tried bash -c 'exit 0'; and it doesn't seem to propagate.

from sudo-prompt.

davej avatar davej commented on July 22, 2024

Did a bit more testing, this does propagate signals: exec bash -c 'exit 0'.

edit: typo.
second edit: Actually that seems to break stdout ughh.

from sudo-prompt.

davej avatar davej commented on July 22, 2024

The more I test this, perhaps it's best to leave it out of the lib, unless there's a straightforward way to do it. I'm not familiar enough with the intricacies of bash.

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

Thanks for trying, at least the bash -c is documented here for those that need to redirect sudo output.

from sudo-prompt.

deiucanta avatar deiucanta commented on July 22, 2024

Using -e flag on bash will exit immediately on error.

@davej Zero is the code for successful exists. If you want to "throw" an error you must exit with something different than zero.

http://unix.stackexchange.com/questions/15998/what-does-the-e-do-in-a-bash-shebang

from sudo-prompt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.