From: Steven Baltakatei Sandoval <baltakatei@gmail.com>
Date: Fri, 13 Jan 2023 05:51:53 +0000 (+0000)
Subject: chore(up/bkt-read_stdin_psarg):Add version number
X-Git-Tag: 0.8.0~1
X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/commitdiff_plain/54e7b41911b4d58f246809f220fe6e9e73dc46e0?ds=sidebyside

chore(up/bkt-read_stdin_psarg):Add version number
---

diff --git a/unitproc/bkt-read_stdin_psarg b/unitproc/bkt-read_stdin_psarg
index 50f76a7..d29e89a 100644
--- a/unitproc/bkt-read_stdin_psarg
+++ b/unitproc/bkt-read_stdin_psarg
@@ -1,4 +1,5 @@
 #!/usr/bin/env bash
+# Desc: Reads stdin and positional arguments
 
 yell() { echo "$0: $*" >&2; } # print script path and all args to stderr
 die() { yell "$*"; exit 111; } # same as yell() but non-zero exit status
@@ -10,6 +11,7 @@ read_stdin_psarg() {
     # Output: stdout (newline delimited)
     # Example: read_stdin_psarg "$@"
     # Depends: GNU bash (version 5.1.16)
+    # Version: 0.0.1
     local input_stdin input_psarg output;
 
     # Store stdin
@@ -42,7 +44,6 @@ read_stdin_psarg() {
     # Print to stdout
     printf "%s\n" "${output[@]}";
 }; # read stdin and positional argument to stdout lines
-
 main() {
     read_stdin_psarg "$@";
 };