tldr/pages/common/task.md

37 lines
571 B
Markdown
Raw Normal View History

2017-01-18 18:43:58 +00:00
# task
2022-09-02 02:49:36 +01:00
> Command-line to-do list manager.
> More information: <https://taskwarrior.org/docs/>.
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
- Add a new task which is due tomorrow:
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
`task add {{description}} due:{{tomorrow}}`
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
- Update a task's priority:
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
`task {{task_id}} modify priority:{{H|M|L}}`
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
- Complete a task:
2017-01-18 18:43:58 +00:00
`task {{task_id}} done`
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
- Delete a task:
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
`task {{task_id}} delete`
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
- List all open tasks:
2017-01-18 18:43:58 +00:00
2022-09-02 02:49:36 +01:00
`task list`
- List open tasks due before the end of the week:
`task list due.before:{{eow}}`
- Show a graphical burndown chart, by day:
`task burndown.daily`
- List all reports:
`task reports`