如何将 taskwarrior 输出回显到文件而不截断?

如何将 taskwarrior 输出回显到文件而不截断?

每当我运行以下命令时:

task due.before:tom or schedule.before:tom > somefile

的内容somefile总是被截断。但是在没有重定向的情况下运行它,效果很好。

我怎样才能解决这个问题?

答案1

task limit:none

Works 向我显示了我的默认报告中未截断的任务列表。

task help | grep limit

limit:          Desired number of rows in report, or 'page'

顺便说一句,还有

task information

它显示所有字段(甚至是那些根据 $task 列不可查看的列)。我用它来查看似乎没有进入表视图中的列的注释。

曾经有过

report.*.limit

根据https://github.com/GothenburgBitFactory/taskwarrior/blob/e13c479ab23851696f2261a360e9c0ff1d4f217f/src/legacy.cpp#L97 但它已被弃用。

相关内容