feat(unitproc):Add template dateShort
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Mon, 29 Jun 2020 11:07:26 +0000 (11:07 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Mon, 29 Jun 2020 11:07:26 +0000 (11:07 +0000)
Produces current date without separators.

unitproc/bktemp-dateShort [new file with mode: 0644]

diff --git a/unitproc/bktemp-dateShort b/unitproc/bktemp-dateShort
new file mode 100644 (file)
index 0000000..425cf85
--- /dev/null
@@ -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+