tldr/pages/common/todo.md

33 lines
605 B
Markdown
Raw Normal View History

2021-10-25 14:49:01 +01:00
# todo
2021-10-24 20:05:11 +01:00
> A simple, standards-based, cli todo manager.
> More information: <https://todoman.readthedocs.io>.
- List startable tasks:
`todo list --startable`
- Add a new task to the work list:
`todo new {{thing_to_do}} --list {{work}}`
- Add a location to a task with a given ID:
2021-10-24 20:05:11 +01:00
`todo edit --location {{location_name}} {{task_id}}`
2021-10-24 20:05:11 +01:00
- Show details about a task:
`todo show {{task_id}}`
- Mark tasks with the specified IDs as completed:
`todo done {{task_id1 task_id2 ...}}`
2021-10-24 20:05:11 +01:00
- Delete a task:
`todo delete {{task_id}}`
- Delete done tasks and reset the IDs of the remaining tasks:
`todo flush`