From 0e14b8abbb4b5c7808846392297d8046c52f0d3b Mon Sep 17 00:00:00 2001 From: Heavybullets8 Date: Thu, 18 Aug 2022 00:14:12 -0600 Subject: [PATCH] add cut to app list instead --- 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 c1021a5c..88b5cfaf 100644 --- a/functions/cmd_to_container.sh +++ b/functions/cmd_to_container.sh @@ -2,7 +2,7 @@ cmd_to_container(){ -app_name=$(k3s crictl pods -s ready --namespace ix | sed -E 's/[[:space:]]([0-9]*|About)[a-z0-9 ]{5,12}ago[[:space:]]//' | sed '1d' | awk '{print $4}' | sort -u | nl -s ") " | column -t) +app_name=$(k3s crictl pods -s ready --namespace ix | sed -E 's/[[:space:]]([0-9]*|About)[a-z0-9 ]{5,12}ago[[:space:]]//' | sed '1d' | awk '{print $4}' | cut -c4- | sort -u | nl -s ") " | column -t) while true do clear -x @@ -22,7 +22,7 @@ do break fi done -app_name=$(echo -e "$app_name" | grep ^"$selection)" | awk '{print $2}' | cut -c4-) +app_name=$(echo -e "$app_name" | grep ^"$selection)" | awk '{print $2}' ) search=$(k3s crictl pods -s ready --namespace ix) mapfile -t pod_id < <(echo "$search" | grep -E "[[:space:]]$app_name([[:space:]]|-([-[:alnum:]])*[[:space:]])" | awk '{print $1}') search=$(k3s crictl ps -a -s running | sed -E 's/[[:space:]]([0-9]*|About)[a-z0-9 ]{5,12}ago[[:space:]]//')