misc helper scripts

This commit is contained in:
Matthew Ryan Dillon 2025-12-14 16:20:35 -05:00
parent 16cf71e592
commit 00b0b76637
3 changed files with 78 additions and 0 deletions

8
home/bin/executable_todo Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
if [[ -z "$*" ]]; then
echo "Error: Please provide a todo item"
exit 1
fi
echo "[ ] $*" >> ~/notebook/todo.xit