#!/usr/bin/sh


# display a personalized greeting to the user with the banner command
banner "Dude!!! $LOGNAME"

# display the system time and date
time; date

# display all the suers logged on
w

# display a message tothe user displaying his or her ID and terminal conndetion

echo "Your terminal sessions include"
w |grep $LOGNAME

# display a closing message
echo "That\'s all he wrote."




