public
Description: command line based task management
Homepage: http://brianreily.com/projects/zen
Clone URL: git://github.com/breily/zen.git
zen / zen_usage.py
100755 42 lines (40 sloc) 1.732 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import sys
 
def usage():
    print '\t-- Zen : Yet Another Task Management App --\n'
    print 'Modes: '
    print "\t'projects' | 'p' | '' : Print project names"
    print
    print "\t'tasks' | 't' : Print tasks for project"
    print "\t options -> : -p | --project [PROJECT]"
    print
    print "\t'details' | 'task' : Print task details"
    print "\t options -> : -p | --project [PROJECT]"
    print "\t options -> : -t | --task [TASK]"
    print
    print "\t'tagsearch' | 'ts' | 'tags' : Search for a tag"
    print "\t options -> : --tag [TAG]"
    print "\t options -> : -p | --project [PROJECT]"
    print
    print "\t'addtask' | 'add' | 'a' : Add a task"
    print "\t options -> : -p | --project [PROJECT]"
    print "\t options -> : [FIELD]=[SOMETHING]"
    print "\t options -> : -q | --quiet"
    print
    print "\t'deletetask' | 'del' | 'dt' : Delete a task"
    print "\t options -> : -t | --task [TASK]"
    print "\t options -> : -p | --project [PROJECT]"
    print "\t options -> : -q | --quiet"
    print
    print "\t'search' | 's' : Full text search"
    print "\t options -> : --term [SEARCH]"
    print "\t options -> : --query [SEARCH]"
    print
    print "\t'addproject' | 'ap' : Add a project"
    print "\t options -> : -q | --quiet"
    print
    print "Other:"
    print "\tHelp: zen help"
    print "\tUndo: zen undo"
    print "\tReverse: zen reverse"
    print "\tShuffle: zen shuffle"
    sys.exit()