-
-
Save michaelgold/71323c65baf2074a9f7708184952d8e7 to your computer and use it in GitHub Desktop.
Taskwarrior project report based on active tasks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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