X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/blobdiff_plain/6ed44731ee993aba953a652ac71a57bc21ec1cf5..f2a58fc8e1dc8080f7a92de274c40625d6459d62:/unitproc/bktemp-timeEpochNS diff --git a/unitproc/bktemp-timeEpochNS b/unitproc/bktemp-timeEpochNS index 33006e5..b0e9a15 100644 --- a/unitproc/bktemp-timeEpochNS +++ b/unitproc/bktemp-timeEpochNS @@ -7,7 +7,7 @@ try() { "$@" || die "cannot $*"; } #o timeEpochNS() { # Desc: Get epoch nanoseconds # Usage: timeEpochNS - # Version 0.2.0 + # Version 0.2.1 # Input: arg1: 'date'-parsable timestamp string (optional) # Output: Nanoseconds since 1970-01-01 # Depends: date 8, yell() @@ -33,8 +33,8 @@ timeEpochNS() { else ### F: Time argument not valid; exit yell "ERROR:Invalid time argument supplied. Exiting."; exit 1; - fi - fi + fi; + fi; # Construct and deliver nanoseconds since 1970-01-01 TIME_EPOCH_FLOAT="$(date --date="$TIME_INPUT" +%s.%N)"; # Save ssss.NNNNNNNNN TIME_EPOCH_INT="$(echo "$TIME_EPOCH_FLOAT" | cut -d. -f1)"; # Get ssss