Root and Sudo
Sudoers
I mentioned the Sudoers file briefly in the main Linux write up, but here we will go more in depth about it. Here is a typical Sudoers file:
#!/bin/bash if [ "$1" == "password" ]; then echo "correct"; else echo "wrong"; fi
I mentioned the Sudoers file briefly in the main Linux write up, but here we will go more in depth about it. Here is a typical Sudoers file:
#!/bin/bash if [ "$1" == "password" ]; then echo "correct"; else echo "wrong"; fi