mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 16:55:34 +02:00
task: refresh page (#8328)
This commit is contained in:
parent
a158032e7e
commit
d7a077eee6
1 changed files with 24 additions and 12 deletions
|
@ -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`
|
||||||
|
|
Loading…
Add table
Reference in a new issue