Keluar dari skrip bash jika tidak berjalan sebagai root

[[ $EUID -ne 0 ]] && echo "This script must be run as root." && exit 1
Foolish Frog