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