From fc1495ab3996d2ded45e6e5ef71d1d256f5eede0 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Mon, 29 Jun 2020 11:07:26 +0000 Subject: [PATCH] feat(unitproc):Add template dateShort Produces current date without separators. --- unitproc/bktemp-dateShort | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 unitproc/bktemp-dateShort diff --git a/unitproc/bktemp-dateShort b/unitproc/bktemp-dateShort new file mode 100644 index 0000000..425cf85 --- /dev/null +++ b/unitproc/bktemp-dateShort @@ -0,0 +1,19 @@ +#!/bin/bash + +# Desc: Template to display date + +dateShort(){ + # Desc: Date without separators (YYYYmmdd) + # Usage: dateShort + # Output: stdout: date (ISO-8601, no separators) + TIME_CURRENT="$(date --iso-8601=seconds)" ; # Produce `date`-parsable current timestamp with resolution of 1 second. + DATE_CURRENT_SHORT="$(date -d "$TIME_CURRENT" +%Y%m%d)"; # Produce separator-less current date with resolution 1 day. + echo "$DATE_CURRENT_SHORT"; +} # Get date without separators + +#==BEGIN sample code== +echo "The current day is:$(dateShort)" +#==END sample code== + +# Author: Steven Baltakatei Sandoval +# License: GPLv3+ -- 2.30.2