aboutsummaryrefslogtreecommitdiff
path: root/bin/clog
blob: d52ab4c5ca8715f5d023eab633b90f35401bd2c0 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
# Record a timestamped message to a logfile, defaulting to ~/.clog
{
    date
    cat - 
    printf '%s\n' --
} >>"${CLOG:-"$HOME"/.clog}"