From c52d9c33af385bfea8db203d061725a4cb3f4a54 Mon Sep 17 00:00:00 2001 From: Ingo Karkat Date: Fri, 4 Jun 2010 04:13:17 +0800 Subject: [PATCH] Removed unnecessary echo within echo. --- todo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/todo.sh b/todo.sh index 50f8e05..f8c4c5e 100755 --- a/todo.sh +++ b/todo.sh @@ -760,7 +760,7 @@ case $action in sed -i.bak -e $item"s/^(.) //" "$TODO_FILE" [ $TODOTXT_VERBOSE -gt 0 ] && { NEWTODO=$(sed "$item!d" "$TODO_FILE") - echo "`echo "$item: $NEWTODO"`" + echo "$item: $NEWTODO" echo "TODO: $item deprioritized." } else @@ -982,7 +982,7 @@ note: PRIORITY must be anywhere from A to Z." sed -i.bak -e $item"s/^(.) //" -e $item"s/^/($newpri) /" "$TODO_FILE" [ $TODOTXT_VERBOSE -gt 0 ] && { NEWTODO=$(sed "$item!d" "$TODO_FILE") - echo "`echo "$item: $NEWTODO"`" + echo "$item: $NEWTODO" echo "TODO: $item prioritized ($newpri)." } cleanup