mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 01:15:39 +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
|
||||
|
||||
> TODO list manager.
|
||||
> More information: <https://manned.org/task>.
|
||||
> Command-line to-do list manager.
|
||||
> 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`
|
||||
|
||||
- Modify task:
|
||||
|
||||
`task {{task_id}} modify {{new_thing_to_do}}`
|
||||
|
||||
- Delete task:
|
||||
- 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`
|
||||
|
|
Loading…
Add table
Reference in a new issue