From: Chris Koeritz Date: Thu, 8 Mar 2012 13:17:49 +0000 (-0500) Subject: making the date_stringer handle other separators between the date components. X-Git-Tag: 2.140.90~1499 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=54ca2128ef76a507221d366283c87958174bab9a;p=feisty_meow.git making the date_stringer handle other separators between the date components. --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index d5ab21e1..44a1bc0b 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -21,7 +21,9 @@ if [ -z "$skip_all" ]; then # a handy little method that can be used for date strings. it was getting # really tiresome how many different ways the script did the date formatting. function date_stringer() { - date +"%Y_%m_%d_%H%M_%S" | tr -d '/\n/' + local sep="$1"; shift + if [ -z "$sep" ]; then sep='_'; fi + date +"%Y$sep%m$sep%d$sep%H%M$sep%S" | tr -d '/\n/' } # makes a directory of the name specified and then tries to change the