• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

contrib/H07-Sep-2007-917652

doc/H07-Sep-2007-927813

src/H03-May-2022-3,9243,181

util/H03-May-2022-2,0281,577

.todoH A D28-Jun-200715.6 KiB277276

AUTHORSH A D09-May-20061.3 KiB5537

COPYINGH A D09-May-200614.8 KiB281237

ChangeLogH A D07-Sep-200724 KiB445418

INSTALLH A D09-May-20067.9 KiB190149

Makefile.amH A D09-May-2006339 129

Makefile.inH A D30-Jun-200719.8 KiB647564

NEWSH A D09-May-2006997 2418

QuickStartH A D30-Jun-2007636 2922

READMEH A D09-May-20061.2 KiB4732

acconfig.hH A D09-May-2006120 73

aclocal.m4H A D30-Jun-2007255.7 KiB7,2526,503

config.guessH A D26-Jun-200743.5 KiB1,5171,305

config.h.inH A D30-Jun-20073 KiB12181

config.subH A D26-Jun-200732 KiB1,6271,483

configureH A D30-Jun-2007689.5 KiB21,70017,215

configure.inH A D28-Jun-20072.5 KiB9274

depcompH A D15-Feb-200717.2 KiB585370

devtodo.list.inH A D09-May-20061.1 KiB3530

devtodo.spec.inH A D09-May-20061.8 KiB6053

install-shH A D15-Feb-200712.9 KiB508340

ltmain.shH A D26-Jun-2007194.3 KiB6,9315,475

makepackages.sh.inH A D09-May-20062.4 KiB9858

missingH A D15-Feb-200710.9 KiB368275

README

1Todo is a program to display and manage a hierarchical list of outstanding work,
2or just reminders.
3
4The program itself is assisted by a few shell scripts that override default
5builtins. Specifically, cd, pushd and popd are overridden so that when using
6one of these commands to enter a directory, the todo will display any
7outstanding items in that directory. These scripts are available in the doc
8sub-directory as scripts.sh and scripts.tcsh.
9
10For much more complete information please refer to the man page (devtodo(1)).
11
12Some examples of sneaky ways to use devtodo:
13
141. Displaying only one item:
15	todo 12
16
172. Displaying *all* items:
18	todo all
19
203. Removing items 1 through 10:
21	tdr 1-10
22
234. Making item 10.1 a child of item 13:
24	todo -R 10.1,13
25
265. Using the binary database loader (but falling back to XML):
27	echo "database-loaders binary,xml" >> ~/.todorc
28
296. *NOT* using the binary database loader at all, ever:
30	echo "database-loaders xml" >> ~/.todorc
31
327. Generating a simplistic TODO file:
33	todo --TODO --format generated='%2>%i- %+1T' all
34
358. Being verbose:
36	todo -v
37
389. Being very verbose:
39	todo -vv
40
4110. Display only medium priority items that are completed and have the word
42  "foobar" in them:
43	todo all done /foobar
44
4510. man devtodo
46	man devtodo
47