#!/bin/bash
#
#   A script display a custom date
#   it displays:
#     The full name of the weekday
#     The time in 12 hour format
#     The timezone
#            and any other field(s) you want
#
/bin/date +"It is currently: %A %I:%m:%S %p %Z"

CURRENT_DAY=$(/bin/date +"%j" | /bin/sed 's/^0*//')

echo "Only $((  365 - $CURRENT_DAY - 7 )) days until Christmas..."
echo "  did you remember the sweater for Aunt Betty?"

