naggie / dstask

Git powered terminal-based todo/note manager -- markdown note page per task. Single binary!
https://calbryant.uk/blog/dstask-a-taskwarrior-alternative/
MIT License
793 stars 47 forks source link

Listing of all tasks? #145

Closed psprint closed 3 years ago

psprint commented 3 years ago

Hi, I would like to display all tasks, beyond the 15 limit. Could a pagination or no-limit listing be provided? Or maybe there's a way to do it already?

I've tried following:

 for ((i=38; i>=1; i--)); dstask $i

However it's little to verbose. Then I've tried grepping:

 for ((i=38; i>=1; i--)); dstask $i | grep Summary

However it doesn't produce any output because of no-terminal JSON output. Maybe there is a way to retrieve the standard-formatted output when piping ?

I have as much as 38 tasks because I'm doing a project-development management with dstask.

psprint commented 3 years ago

Already answered elsewhere.