diff options
author | Marc Coquand <marc@mccd.space> | 2024-07-05 10:07:41 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-07-05 10:07:41 -0500 |
commit | 6b4c0820f976fc3a265f6e9e413a6f65f4aa2152 (patch) | |
tree | 821150be2725a7311da63d9f06880c80c7b77fae /local/bin/todo | |
parent | abb848f06e5685590921801b7faa9d88970812a2 (diff) | |
download | openbsd-6b4c0820f976fc3a265f6e9e413a6f65f4aa2152.tar.gz openbsd-6b4c0820f976fc3a265f6e9e413a6f65f4aa2152.tar.bz2 openbsd-6b4c0820f976fc3a265f6e9e413a6f65f4aa2152.zip |
Add todo and capture scripts
Diffstat (limited to 'local/bin/todo')
-rwxr-xr-x | local/bin/todo | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/local/bin/todo b/local/bin/todo new file mode 100755 index 0000000..f0a02b8 --- /dev/null +++ b/local/bin/todo @@ -0,0 +1,14 @@ +#!/bin/sh + +TODO_BASE='* TODO ' +JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org" +echo '* TODO ' > /tmp/capture +$EDITOR /tmp/capture +1 +if grep -q '^\* TODO\s*$' /tmp/capture +then + echo "Empty capture" +else + echo "Storing capture in $JRNL" + cat /tmp/capture > $JRNL +fi + |