#! /usr/bin/bash

## if statement
echo 'This is a shell script with an if statement'
ME=$(whoami)
if [ $ME = 'sbs5' ]; then
   echo 'hello Professor Slade!'
else
   echo hello $ME
fi



