I run this command many times a day:
kubectl get pods -A | grep -E "CrashLoopBackOff|Error|Pending"
So I turned it into an alias:
alias kbad='kubectl get pods -A | grep -E "CrashLoopBackOff|Error|Pending"'
Now kbad gives me a quick health scan during debugging.
It is not fancy, but that is the point.
Small ergonomics add up over months.
If you have commands you type 10+ times a week, alias them.
You’ll feel the difference in a few days.