X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=44a1bc0b2630cd7442d7fd25b11e3dd669fab0b9;hb=eaad005a9fbdee6c960a24c015aa59b755bd3445;hp=d5ab21e10a5899d20d44372e8a52cda8c9c1e924;hpb=7876831b338ec827cffda6792ef77f444b18eb6e;p=feisty_meow.git 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