From e7c0d17abd517fbade64b1106cb3b754402190ff Mon Sep 17 00:00:00 2001 From: Rob Pearce Date: Thu, 3 Jun 2021 08:57:41 +1000 Subject: [PATCH] Adding readme --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..942f689 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +Command line CardDAV CLI client. + +Requirements: vdirsyncer + + +Usage: +{{{ +rpearce@crom:task_cli$ ./t.sh -h +usage: ./t.sh COMMAND [commandopts] + + COMMAND DESCRIPTION SYNONYMS + list [id1] .. [idX] List [just the specified] tasks ls,show + fold Fold a parent task (hide its children) f,zc + unfold Unfold a parent task (show its children) u,zo + toggle Fold/Unfold a parent task z + done Complete a task x,complete + notdone Uncomplete a task o,incomplete,uncomplete,clear + add [parent] Add a new task [as subtask of parent] a,new,create + del [id1] .. [idX] Delete given task(s) rm,delete + cleanup Delete all completed tasks clean,flush,dc + rename Rename given task + left Decrease indent of given task h,out,up + right Move task below the given parent l,mv,in + note Change notes for given task desc,description,comment + tag Add a tag to the given task t + untag Remove a tag from the given task ut + sync Sync tasks using vdirsyncer + view Show detailed info for given task v,info,vcal +}}}