From fe513ec3549a469fda49e99c871057a7ff91eaca Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 18 May 2019 22:52:09 -0600 Subject: [PATCH] modernize date cmd --- backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.sh b/backup.sh index 3cd0842..84315be 100755 --- a/backup.sh +++ b/backup.sh @@ -106,7 +106,7 @@ function scriptHelp { ### generate dynamic timestamps function stamp { - echo `date +%F" "%T` + (date +%F" "%T) } ### quit -- exit the script after logging any errors, warnings, etc.