1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 05:35:23 +02:00
tldr/pages/common/task.md
Managor d1fa35edf6
common/*: reduce usage of "command-line" (part 2) (#16950)
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-29 11:47:23 +03:00

36 lines
558 B
Markdown

# task
> To-do list manager.
> More information: <https://taskwarrior.org/docs/>.
- Add a new task which is due tomorrow:
`task add {{description}} due:{{tomorrow}}`
- Update a task's priority:
`task {{task_id}} modify priority:{{H|M|L}}`
- Complete a task:
`task {{task_id}} done`
- Delete a task:
`task {{task_id}} delete`
- List all open tasks:
`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`