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