Skip to content

Instantly share code, notes, and snippets.

@sridatta
sridatta / task
Last active August 29, 2015 13:56 — forked from anonymous/task
A simple file-based task manager in Bash
#!/bin/sh
if [ -z $TASK_DIR ]; then
TASK_DIR=$HOME/tasks
fi
help () {
echo "Valid subcommands: create, ls, rm, cat, edit"
}