Como verificar as corridas do Bash com Sudo
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
#Note:
If you get 2: [: Illegal number: check if you have #!/bin/sh at the top
and change it to #!/bin/bash.
HosseinZaaferani