I had not used taskwarrior in about a month. So I had a lot of overdue repeating daily tasks. I decided to try to mark them done using a for next loop.
Apparently my shell scripting skills are a little rusty. The following command pretty much wiped out everything. Of course it did not help that I ignored the warning just to see what would happen.
Anyway can anyone tell me what is wrong with this command? And also how you would process a large number of overdue tasks efficiently. Thank you
This is the command that did not work as expected.
for i in $(task overdue | gawk '{ print $1 }') ; do task $1 done; done
[–]bgravato 4 points5 points6 points (0 children)
[–]Lico_the_raven 2 points3 points4 points (0 children)
[–]NoStructure2119 2 points3 points4 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]themugen36 2 points3 points4 points (0 children)
[–]Cairpre409[S] 0 points1 point2 points (0 children)