Skip to content

Instantly share code, notes, and snippets.

@michaelgold
Created September 11, 2017 14:21
Show Gist options
  • Save michaelgold/747d9a27c115b37e398356a82ea774a9 to your computer and use it in GitHub Desktop.
Save michaelgold/747d9a27c115b37e398356a82ea774a9 to your computer and use it in GitHub Desktop.
Taskwarrior project report based on task
#!/bin/bash
# runs custom report named: ls
task sum pro:`task _get $1.project`
printf "\nPending Tasks: "
task ls pro:`task _get $1.project` status:pending
printf "\nWaiting Tasks: "
task ls pro:`task _get $1.project` status:waiting
printf "\nCompleted Tasks: "
task ls pro:`task _get $1.project` status:completed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment