dotfiles/bin/journal

8 lines
97 B
Text
Raw Normal View History

2025-04-27 21:57:27 +02:00
#!/bin/sh
ENTRY=$@
if [ -n "$ENTRY" ]; then
echo "`date -Is`\t$@" >> journal
fi
cat journal