Tagged Questions
1
vote
2answers
235 views
Why sudo timestamp is not updated when NOPASSWD is set?
I've set up sudo not to prompt for password by editing the sudoers file:
myuser ALL=(ALL:ALL) NOPASSWD: ALL
And it works fine, running sudo with no password prompting. But when entering sudo -v I ...
3
votes
2answers
854 views
executing if-statement from command prompt
In bash I can do the following:
if [ -f /tmp/test.txt ]; then echo "true"; fi
However, if I add sudo in front, it doesn't work anymore:
sudo if [ -f /tmp/test.txt ]; then echo "true"; fi
-bash: ...