added Changelog.
[gtdo.git] / README
blob4b60a3d9b1073997a3d7377129a0e82a2f127a17
2 gtdo
3 ====
5 Perl reimplementation of todo.py which was obtained from somewhere on
6 www.todotxt.com
8 Additional features include task heirarchies and displaying only the next step
9 for each task group (project).
11 approximate interface (where the script is aliased to 't') :
13 $ t add /gnucash @online install gnucash
14 $ t add /frames @errands buy wood
15 $ t add /email @online set up spamassassin
16 $ t add /gnucash @online add portfolio to gnucash
18 # only the immediate next task is displayed when you 'ls'
19 $ t ls
20 1 : /gnucash @online install gnucash
21 2 : /frames @errands buy wood
22 3 : /email @online set up spamassassin
24 $ t ls @online
25 1 : /gnucash @online install gnucash
26 3 : /email @online set up spamassassin
28 # except when you specifically ask for a group
29 $ t ls /gnucash
30 1 : /gnucash @online install gnucash
31 4 : /gnucash @online add portfolio to gnucash
33 # well, we need to fix F::Q::IndiaMutual before we add our portfolio
34 # we'll try adding that as the second step in the /gnucash group
35 $ t add /gnucash.2 fix F::Q::IndiaMutual
37 $ t ls /gnucash
38 1 : /gnucash @online install gnucash
39 4 : /gnucash fix F::Q::IndiaMutual
40 5 : /gnucash @online add portfolio to gnucash