| 1 |
lite2do - a lightweight text-based todo manager |
| 2 |
|
| 3 |
usage information |
| 4 |
|
| 5 |
|
| 6 |
Copyright (C) 2008, 2009 Jaromir Hradilek |
| 7 |
|
| 8 |
Permission is granted to copy, distribute and/or modify this document |
| 9 |
under the terms of the GNU Free Documentation License, Version 1.3 or |
| 10 |
any later version published by the Free Software Foundation; with no |
| 11 |
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. |
| 12 |
|
| 13 |
A copy of the license is included as a file called FDL in the main |
| 14 |
directory of the lite2do source package. |
| 15 |
|
| 16 |
|
| 17 |
1. About the Script |
| 18 |
|
| 19 |
lite2do is a lightweight command-line todo manager written in Perl. Being |
| 20 |
based on w2do and fully compatible with its save file format, it tries to |
| 21 |
provide much simpler alternative for those who do not appreciate nor requi- |
| 22 |
re w2do's complexity. |
| 23 |
|
| 24 |
|
| 25 |
2. Script Usage |
| 26 |
|
| 27 |
The basic usage is as follows: |
| 28 |
|
| 29 |
lite2do [OPTION...] COMMAND [ARGUMENT...] |
| 30 |
|
| 31 |
The available commands are: |
| 32 |
|
| 33 |
list [@GROUP] [TEXT...] |
| 34 |
ls [@GROUP] [TEXT...] |
| 35 |
Display items in the task list. All tasks are listed by default, but |
| 36 |
desired subset can be easily selected giving a group name, text pattern |
| 37 |
or combination of both. |
| 38 |
|
| 39 |
list %ID |
| 40 |
ls %ID |
| 41 |
Display task with selected id. |
| 42 |
|
| 43 |
add [@GROUP] TEXT... |
| 44 |
Add new item to the task list. |
| 45 |
|
| 46 |
change ID TEXT... |
| 47 |
mv ID TEXT... |
| 48 |
Change item with selected id in the task list. |
| 49 |
|
| 50 |
change ID @GROUP |
| 51 |
mv ID @GROUP |
| 52 |
Change group the item with selected id belongs to. |
| 53 |
|
| 54 |
finish ID |
| 55 |
fn ID |
| 56 |
Mark item with selected id as finished. |
| 57 |
|
| 58 |
revive ID |
| 59 |
re ID |
| 60 |
Mark item with selected id as unfinished. |
| 61 |
|
| 62 |
remove ID |
| 63 |
rm ID |
| 64 |
Remove item with selected id from the task list. |
| 65 |
|
| 66 |
undo |
| 67 |
ud |
| 68 |
Revert last action. When invoked, the data are restored from the backup |
| 69 |
file (i.e. ~/.lite2do.bak by default), which is in turn deleted at the |
| 70 |
same time. |
| 71 |
|
| 72 |
groups |
| 73 |
gr |
| 74 |
Display list of groups in the task list along with the number of tasks |
| 75 |
belonging to them. |
| 76 |
|
| 77 |
help [COMMAND] |
| 78 |
Display usage information. By default, list of all supported commands |
| 79 |
and command-line options is displayed. If the command is supplied, fur- |
| 80 |
ther information on its usage are displayed instead. |
| 81 |
|
| 82 |
version |
| 83 |
Display version information. |
| 84 |
|
| 85 |
For the list of command-line options, either type `lite2do --help', or read |
| 86 |
the corresponding manual page. |
| 87 |
|
| 88 |
|
| 89 |
3. Bugs |
| 90 |
|
| 91 |
To report bugs or even send patches, you can either add new issue to the |
| 92 |
project bugtracker at <http://code.google.com/p/w2do/issues/>, visit the |
| 93 |
discussion group at <http://groups.google.com/group/w2do/>, or you can con- |
| 94 |
tact the author directly via e-mail. |
| 95 |
|
| 96 |
|
| 97 |
4. Copyright |
| 98 |
|
| 99 |
Copyright (C) 2008, 2009 Jaromir Hradilek |
| 100 |
|
| 101 |
This program is free software; see the source for copying conditions. It is |
| 102 |
distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 103 |
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PAR- |
| 104 |
TICULAR PURPOSE. |