]> zdv2.bktei.com Git - BK-2020-03.git/blobdiff - user/bkdate
chore(prvt):Move user scripts into prvt submodule for processing
[BK-2020-03.git] / user / bkdate
diff --git a/user/bkdate b/user/bkdate
deleted file mode 100755 (executable)
index 1bf808b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-# Date: 2020-02-06T22:51Z
-
-# Description: A simple command line tool to dispay the date in ISO-8601 format.
-
-DATE="$(date --iso-8601=seconds)"
-
-if [[ $DATE =~ "+00:00"$ ]]; then
-    DATE2=${DATE::-6}"Z"
-    echo $DATE2
-    exit 0
-else
-    echo $DATE
-    exit 0
-fi