dotfiles/home/bin/executable_todo

8 lines
141 B
Bash

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