Wie man das Bash -Skript macht, muss in Sudo ausgeführt werden

if [[ $(/usr/bin/id -u) -ne 0 ]]; then
    echo "Not running as root"
    exit
fi
Adventurous Anteater