X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/blobdiff_plain/9eaab35fa56888b516049a8c3458fea9632b4647..966a8d1189ee6e224fcc4cbee330c3e6df7fb077:/unitproc/bkt-read_stdin_psarg diff --git a/unitproc/bkt-read_stdin_psarg b/unitproc/bkt-read_stdin_psarg index d29e89a..aad2927 100644 --- a/unitproc/bkt-read_stdin_psarg +++ b/unitproc/bkt-read_stdin_psarg @@ -11,20 +11,18 @@ read_stdin_psarg() { # Output: stdout (newline delimited) # Example: read_stdin_psarg "$@" # Depends: GNU bash (version 5.1.16) - # Version: 0.0.1 + # Version: 0.0.3 local input_stdin input_psarg output; # Store stdin if [[ -p /dev/stdin ]]; then input_stdin="$(cat -)"; fi; - yell "DEBUG:$(declare -p input_stdin)"; # Store arguments if [[ $# -gt 0 ]]; then - input_psarg="$@"; + input_psarg="$*"; fi; - yell "DEBUG:$(declare -p input_psarg)"; # Combine as output array elements ## Read in stdin @@ -39,7 +37,6 @@ read_stdin_psarg() { output+=("$arg"); done; fi; - yell "DEBUG:$(declare -p output)"; # Print to stdout printf "%s\n" "${output[@]}";