diff options
Diffstat (limited to '_tj_openbsd')
-rwxr-xr-x | _tj_openbsd | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/_tj_openbsd b/_tj_openbsd new file mode 100755 index 0000000..7b97641 --- /dev/null +++ b/_tj_openbsd @@ -0,0 +1,27 @@ +#!/usr/local/bin/bash + +# Our target file +TODAY_JOURNAL=~/Notes/journal/$(date +\%Y-\%m-\%d).md + +# Test whether it already exisits or not +if [[ -a $TODAY_JOURNAL ]] +then + while read -r line + do + JLINE="- $(date +'%H:%M'): $line" + echo "$JLINE" >> "$TODAY_JOURNAL" + done < "${1:-/dev/stdin}" +else + touch "$TODAY_JOURNAL" + header_date="$(date +'%A %d %b %Y')" + { echo -e "# $header_date\n" + echo -e "## Journal\n" + } >> "$TODAY_JOURNAL" + while read -r line + do + JLINE="- $(date +'%H:%M'): $line" + echo "$JLINE" >> "$TODAY_JOURNAL" + done < "${1:-/dev/stdin}" +fi + + |