From 354e132d8fd7d50558709cb0288f7763fe5ade9f Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Sun, 21 Aug 2022 22:04:42 -0600 Subject: [PATCH] array rebuild --- functions/cmd_to_container.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/cmd_to_container.sh b/functions/cmd_to_container.sh index 1ed5bd2d..cfdc13a8 100644 --- a/functions/cmd_to_container.sh +++ b/functions/cmd_to_container.sh @@ -32,9 +32,9 @@ do # continue # fi printf '%s\0' "${containers[@]}" | grep -Fxqz -- "$(echo "$search" | grep "$pod" | awk '{print $4}' | tr -d " \t\r ")" && continue - containers+="$(echo "$search" | grep "$pod" | awk '{print $4}' | tr -d " \t\r ")" + containers+=("$(echo "$search" | grep "$pod" | awk '{print $4}' | tr -d " \t\r ")") done -readarray -td, containers <<<"$containers"; declare -p containers; +containers=("${containers[@]}") case "${#containers[@]}" in 0) echo -e "No containers available\nAre you sure the application in running?"