Kolom Xargs Cut Linux

kubectl get pods | grep xxxxx | cut -d" " -f1 | xargs -I {} kubectl delete pods {} --grace-period=0 --force 
DreamCoder