I have the following pods:
NAME READY STATUS RESTARTS AGE xxx-myactivities-79f49cdfb4-nwg22
To delete all pods in terminating state with one command do:
for p in $(kubectl get pods | grep Terminating | awk '{print $1}'); do kubectl delete pod $p --grace-period=0 --force;done