Как сделать сценарий BASH

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