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

exec /bin/echo $(/bin/date "+%T") ${1+"$@"} >> $HOME/.bashlog/today
exit 1
