This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
# Checks for ROOT privileges | |
echo "============================================" | |
echo "Checking for ROOT" | |
echo "============================================" | |
if [ "$USER" = "root" ] | |
then | |
echo "Success! You are ROOT" | |
else |