2025-03-14 21:59:59 -06:00
|
|
|
# todo
|
|
|
|
|
|
|
|
|
|
> A simple, standards-based, cli todo manager.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://todoman.readthedocs.io/en/stable/man.html>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- List startable tasks:
|
|
|
|
|
|
|
|
|
|
`todo list --startable`
|
|
|
|
|
|
|
|
|
|
- Add a new task to the work list:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`todo new {{thing_to_do}} {{[-l|--list]}} {{work}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Add a location to a task with a given ID:
|
|
|
|
|
|
|
|
|
|
`todo edit --location {{location_name}} {{task_id}}`
|
|
|
|
|
|
|
|
|
|
- Show details about a task:
|
|
|
|
|
|
|
|
|
|
`todo show {{task_id}}`
|
|
|
|
|
|
|
|
|
|
- Mark tasks with the specified IDs as completed:
|
|
|
|
|
|
|
|
|
|
`todo done {{task_id1 task_id2 ...}}`
|
|
|
|
|
|
|
|
|
|
- Delete a task:
|
|
|
|
|
|
|
|
|
|
`todo delete {{task_id}}`
|
|
|
|
|
|
|
|
|
|
- Delete done tasks and reset the IDs of the remaining tasks:
|
|
|
|
|
|
|
|
|
|
`todo flush`
|