Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Last active December 21, 2019 10:37
Show Gist options
  • Save rohan-molloy/b304653d2be767d5ed3fbd83deb86c8f to your computer and use it in GitHub Desktop.
Save rohan-molloy/b304653d2be767d5ed3fbd83deb86c8f to your computer and use it in GitHub Desktop.

Check if script is running as root

if [[ $EUID -eq 0 ]]; then
  echo "You are running this script as root"
  read -r -p "Are you sure? [y/N] " response
  case "$response" in
    [yY])
      #do_something $@    
    ;;
    *)
      #exit_script 
    ;;
  esac
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment