Taskwarrior

如何在不截斷的情況下將 taskwarrior 輸出回顯到文件?

  • January 30, 2022

每當我執行以下命令時:

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

的內容somefile總是被截斷。但是在沒有重定向的情況下執行它,它工作正常。

我怎樣才能解決這個問題?

task limit:none

作品向我顯示了我原本被截斷的預設報告的任務的未截斷列表。

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 但它已被棄用。

引用自:https://unix.stackexchange.com/questions/673508