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