Skip to content

Instantly share code, notes, and snippets.

View aaronymousX's full-sized avatar
💭
Just messing around...

AaronymousX aaronymousX

💭
Just messing around...
View GitHub Profile
@aaronymousX
aaronymousX / ServerSetup.sh
Last active December 16, 2020 17:45
ServerSetup.sh
#!/bin/bash
clear
# Checks for ROOT privileges
echo "============================================"
echo "Checking for ROOT"
echo "============================================"
if [ "$USER" = "root" ]
then
echo "Success! You are ROOT"
else