#!/bin/ksh
#
# $Revision: 70aa67e457e6 $ $Date: Thu, 21 Mar 2024 17:02:44 -0400 $
# $Source: /doc/html/htdocs/dotfiles/libexec/cmdlog $
# $Host: furbag $
# $UUID: eea883a6-2107-470d-a804-e0a7ac3c9c6c $
#
#< cmdlog: store commands in current logfile.
# Since this is run on every command, make it short.

#/usr/bin/logger -p local5.info ${1+"$@"}
exec /bin/echo $(/bin/date "+%T") ${1+"$@"} >> $HOME/.log/today
exit 1
