From e9b92b716fb497c2cbb50e3a3cb400b9c53eb613 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Wed, 6 May 2009 20:53:52 -0500 Subject: [PATCH] * bin/time: add --short which actually prints the current time Signed-off-by: Dustin Kirkland --- bin/time | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/time b/bin/time index 447cf92b..a02858ea 100755 --- a/bin/time +++ b/bin/time @@ -21,7 +21,7 @@ if [ "$1" = "--detail" ]; then date exit 0 elif [ "$1" = "--short" ]; then - date +%Y-%m-%d + date +%H:%M:%S exit 0 fi