1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 14:15:44 +02:00

task: refresh page (#8328)

This commit is contained in:
Adrien Thebo 2022-09-01 18:49:36 -07:00 committed by GitHub
parent a158032e7e
commit d7a077eee6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,36 @@
# task # task
> TODO list manager. > Command-line to-do list manager.
> More information: <https://manned.org/task>. > More information: <https://taskwarrior.org/docs/>.
- Add new task: - Add a new task which is due tomorrow:
`task add {{thing_to_do}}` `task add {{description}} due:{{tomorrow}}`
- List tasks: - Update a task's priority:
`task list` `task {{task_id}} modify priority:{{H|M|L}}`
- Mark task as completed: - Complete a task:
`task {{task_id}} done` `task {{task_id}} done`
- Modify task: - Delete a task:
`task {{task_id}} modify {{new_thing_to_do}}`
- Delete task:
`task {{task_id}} delete` `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`