commit e3c5f16aba9c913e6ff21f329d821f553a7f36b9 from: Paul W. Rankin date: Fri Oct 04 10:46:23 2024 UTC t_done.sh: fix today -gt commit - 24a9575d4a5a18899950d4f6506b944de94d7587 commit + e3c5f16aba9c913e6ff21f329d821f553a7f36b9 blob - b62696b7ae88a2446fd9cae4552652202ce675b2 blob + d485ff8f99aec783fea6f78b96eb2452f27dd4a4 --- t_done.sh +++ t_done.sh @@ -89,7 +89,7 @@ t_print() { if [ -n "$date" ] && [ -z "$onlydone$showall" ]; then today=$(date +%Y%m%d) - if [ "$date" -gt "$today" ]; then + if [ "$today" -gt "$date" ]; then todo=$(echo "$todo" | sed -E "s/($re_prefix)(.*)/\1** \2 **/") fi