dotfiles/bin/journal
2025-04-27 21:57:27 +02:00

7 lines
97 B
Bash
Executable file

#!/bin/sh
ENTRY=$@
if [ -n "$ENTRY" ]; then
echo "`date -Is`\t$@" >> journal
fi
cat journal