Replies: 2 comments 4 replies
-
Thanks! 😊 To script the TaskLite CLI the easiest way is often to run a raw SQL command: tasklite runsql 'select ulid from tasks where due_utc < datetime()' \
| tail -n +2 \
| while read -r taskId; do tasklite do "$taskId"; done |
Beta Was this translation helpful? Give feedback.
3 replies
-
I get same error when just running:
Any hint? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
Let me first congratulate you for 0.4 release!
It brings, afaict, proper support for recurring tasks which is feature not addressed even in Taskwarrior-3.x and which could even persuade me to switch to TL!. When it comes to contributing, I also know that I'd not learn Rust or go back to C++, but Haskell is the most beautiful language I've ever encountered...tried to learn it twice, but didn't grok monads. :-)
Several times I was trying to replace TW with Emacs's org-mode, but always returning to TW or, recently,. using Etm which is very nice and complete, but lacks the elegance of TW's cli interface.
I did import TW's tasks, but I wonder how to be more effective with TL which uses more complex ids for tasks in comparison with TW.
For instance, after fresh import of TW tasks, there are many which are obsolete or overdue, so I wonder how could I 'do' them all, iow. something like:
`tasklite overdue | 'do them all'
Sincerely,
Gour
Beta Was this translation helpful? Give feedback.
All reactions