add cut to app list instead
This commit is contained in:
parent
d58b25c355
commit
0e14b8abbb
@ -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:]]//')
|
||||
|
Loading…
Reference in New Issue
Block a user