feat(unitproc):checkAppFileDir:Add displayMissing(), version nums
[BK-2020-03.git] / unitproc / bktemp-setTimeZoneEV
index 5c780ce189b81a3d3b7075da3fcd6be409a6ab70..8b5370b6125965ff59c113339818c1dc45b179b7 100644 (file)
@@ -8,6 +8,7 @@ try() { "$@" || die "cannot $*"; }
 setTimeZoneEV(){
     # Desc: Set time zone environment variable TZ
     # Usage: setTimeZoneEV arg1
+    # Version 0.1.1
     # Input: arg1: 'date'-compatible timezone string (ex: "America/New_York")
     #        TZDIR env var (optional; default: "/usr/share/zoneinfo")
     # Output: exports TZ
@@ -16,8 +17,9 @@ setTimeZoneEV(){
     #         exit code 2 if unable to validate arg1
     # Depends: yell, printenv, bash 5
     # Tested on: Debian 10
-    ARG1="$1"
-    local tzDir returnState
+    local tzDir returnState argTimeZone
+
+    argTimeZone="$1"
     if ! [[ $# -eq 1 ]]; then
        yell "ERROR:Invalid argument count.";
        return 1;
@@ -31,12 +33,12 @@ setTimeZoneEV(){
     fi
     
     # Validate TZ string
-    if ! [[ -f "$tzDir"/"$ARG1" ]]; then
+    if ! [[ -f "$tzDir"/"$argTimeZone" ]]; then
        yell "ERROR:Invalid time zone argument.";
        return 2;
     else
     # Export ARG1 as TZ environment variable
-       TZ="$ARG1" && export TZ && returnState="true";
+       TZ="$argTimeZone" && export TZ && returnState="true";
     fi
 
     # Determine function return code
@@ -67,6 +69,8 @@ date --iso-8601=seconds
 cmd4="setTimeZoneEV Pacific/Lemuria"
 echo "Running:$cmd4"; $cmd4; echo "Exit code:$?"
 date --iso-8601=seconds; echo "==============="; sleep 2
+
+try setTimeZoneEV Atlantic/Atlantis
 #==END sample code==
 
 # Author: Steven Baltakatei Sandoval