Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
task Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# task
> Command-line 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`