W.A.S.S to print “Good Morning / Afternoon / Evening” according to system time.
 
Program
 
# W.A.S.S to print “Good Morning / Afternoon / Evening” according to system time.
 
str=`date +%k`
if test $str -gt 16
then
   echo "Good Evening!"
else
            if test $str -gt 12
   then
                      echo "Good Afternoon!"
   else
 echo "Good Morning!"
fi
fi
 
 
Output
 
sh good.sh
Good Evening!