From 45e9dc7550099f7a703098af49366921457fed35 Mon Sep 17 00:00:00 2001 From: Ingo Karkat Date: Sat, 14 Jan 2012 15:04:55 +0100 Subject: [PATCH] Use ISO 8601 timestamp format. IMO 2012-01-14T14:49 looks better than the messy -*-*-*- of 2012-01-14-14:49, and is more aligned with standards. --- tests/t9999-testsuite_example.sh | 6 +++--- todo.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/t9999-testsuite_example.sh b/tests/t9999-testsuite_example.sh index d3c4de0..4fd143f 100755 --- a/tests/t9999-testsuite_example.sh +++ b/tests/t9999-testsuite_example.sh @@ -86,7 +86,7 @@ TODO: 5 of 5 tasks shown >>> todo.sh report TODO: Report file updated. -2009-02-13-04:40:00 5 1 +2009-02-13T04:40:00 5 1 >>> todo.sh append g a usage: todo.sh append ITEM# "TEXT TO APPEND" @@ -163,11 +163,11 @@ TODO: 3 marked as done. >>> todo.sh report TODO: Report file updated. -2009-02-13-04:40:00 5 2 +2009-02-13T04:40:00 5 2 >>> todo.sh report TODO: Report file updated. -2009-02-13-04:40:00 5 2 +2009-02-13T04:40:00 5 2 >>> todo.sh remdup Usage: todo.sh [-fhpantvV] [-d todo_config] action [task_number] [task_description] diff --git a/todo.sh b/todo.sh index 684ee5d..3f63ec5 100755 --- a/todo.sh +++ b/todo.sh @@ -1193,7 +1193,7 @@ note: PRIORITY must be anywhere from A to Z." TOTAL=$( sed -n '$ =' "$TODO_FILE" ) TDONE=$( sed -n '$ =' "$DONE_FILE" ) - echo "$(date +%Y-%m-%d-%T) ${TOTAL:-0} ${TDONE:-0}" >> "$REPORT_FILE" + echo "$(date +%Y-%m-%dT%T) ${TOTAL:-0} ${TDONE:-0}" >> "$REPORT_FILE" [ $TODOTXT_VERBOSE -gt 0 ] && echo "TODO: Report file updated." sed -ne '$p' "$REPORT_FILE" ;;