Removed edit action

This commit is contained in:
Gina Trapani
2009-03-19 18:37:36 -07:00
parent 1e5902d0e2
commit ec54a032cb

View File

@@ -1,12 +0,0 @@
#!/bin/bash
case $1 in
"usage")
echo "$(basename $0) [BASENAME]"
echo " Open \$TODO_DIR/BASENAME.txt in \$EDITOR."
echo " If BASENAME is not given, defaults to 'todo'."
;;
*)
FILE=${2:-todo}.txt
$EDITOR $TODO_DIR/$FILE
;;
esac