Skip to content

Instantly share code, notes, and snippets.

@michaelgold
Created September 14, 2017 00:32
Show Gist options
  • Save michaelgold/71323c65baf2074a9f7708184952d8e7 to your computer and use it in GitHub Desktop.
Save michaelgold/71323c65baf2074a9f7708184952d8e7 to your computer and use it in GitHub Desktop.
Taskwarrior project report based on active tasks
#!/bin/bash
IFS=' ' read -r -a ids <<< "$(task +ACTIVE ids)"
for i in "${ids[@]}"
do
printf "\n\n\n\n\n$i - `task _get $i.description`\n"
/usr/local/bin/tnp $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment