Hacker News new | ask | show | jobs
by 0xmohit 3543 days ago

  then you watch the code, create a branch:
  git checkout -b `bugfix/nasty_one`
Please remove backticks from the command. What if you called the branch `poweroff` instead and a naive reader copy/pasted the command into her terminal?
2 comments

  poweroff: Need to be root
Some recent distros will actually let you run that as yourself, without root, if you're physically present at the machine. It's convenient for personal machines.
One might have sudo privileges configured via /etc/sudoers (It's the default on AWS EC2 instances!)
Yes, but you still need to call "sudo poweroff", not just "poweroff".
See user chainsaw10. Anecdotally, on my vanilla Arch systems, I can run "poweroff" without being root, and without sudo, and the computers will end all processes and turn off.
Thanks, fixed