summaryrefslogtreecommitdiff
path: root/local/bin/capture
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-07-05 10:07:41 -0500
committerMarc Coquand <marc@mccd.space>2024-07-05 10:07:41 -0500
commit6b4c0820f976fc3a265f6e9e413a6f65f4aa2152 (patch)
tree821150be2725a7311da63d9f06880c80c7b77fae /local/bin/capture
parentabb848f06e5685590921801b7faa9d88970812a2 (diff)
downloadopenbsd-6b4c0820f976fc3a265f6e9e413a6f65f4aa2152.tar.gz
openbsd-6b4c0820f976fc3a265f6e9e413a6f65f4aa2152.tar.bz2
openbsd-6b4c0820f976fc3a265f6e9e413a6f65f4aa2152.zip
Add todo and capture scripts
Diffstat (limited to '')
-rwxr-xr-xlocal/bin/capture16
1 files changed, 16 insertions, 0 deletions
diff --git a/local/bin/capture b/local/bin/capture
new file mode 100755
index 0000000..c4cd844
--- /dev/null
+++ b/local/bin/capture
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+DATE=$(date +'%y-%m-%d.%H:%M.%S')
+CAPTURE_FILE="/tmp/capture-$DATE"
+echo $DATE
+JRNL="$STITCH_DIRECTORY/$DATE.org"
+echo '* ' > $CAPTURE_FILE
+$EDITOR $CAPTURE_FILE +1
+if grep -q '^\*\s*$' $CAPTURE_FILE
+then
+ echo "Empty capture; ignoring"
+else
+ echo "Storing capture in $JRNL"
+ cat $CAPTURE_FILE > $JRNL
+fi
+