diff options
author | ensa <psii@riseup.net> | 2020-05-26 23:49:07 -0700 |
---|---|---|
committer | ensa <psii@riseup.net> | 2020-05-26 23:49:07 -0700 |
commit | 24b546aa76dad714036e18dd6204c7688056c4a7 (patch) | |
tree | ba8401b345602de96a3506322ae348ee6bd07f89 /README | |
download | todo-24b546aa76dad714036e18dd6204c7688056c4a7.tar.gz |
initial commit
all the relevant info is present in README, TODO, LICENSE, and todo.
Diffstat (limited to 'README')
-rw-r--r-- | README | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/README b/README new file mode 100644 index 0000000..c8da6ab --- /dev/null +++ b/README @@ -0,0 +1,22 @@ +todo: a todo list manager +requires standard POSIX utils and mktemp + +install: +copy to anywhere in your $PATH + +relevant variables: + $EDITOR (preferred editor, uses vi if blank) + $TODO (path to todo file, uses $HOME/todo if blank) + +options: +[no args] shows todo file with numbered lines +-e edits $TODO in $EDITOR +-x shows completed tasks +-n num operate on line num +-a string add string to todo +-d [num] delete line num + + +trick: +todo -n 10 -a 'string' + will place string at line ten, pushing each line after it down by one |