Skip to content

Instantly share code, notes, and snippets.

@madflojo
Created July 7, 2022 15:41
Show Gist options
  • Save madflojo/d560d7c002d68446e0ad69d454e6d988 to your computer and use it in GitHub Desktop.
Save madflojo/d560d7c002d68446e0ad69d454e6d988 to your computer and use it in GitHub Desktop.
Article - Manage Shell Scripts - Pre formatter
#! /bin/bash
# Simple script that says who I am.
WHOAMI=`whoami`
if [ $WHOAMI == "root" ]
then
cowsay "I am rooooot!!!"
else
cowsay "You are $WHOAMI"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment