column -t lines up columns
Output with fields separated by spaces or commas is hard to read until it is aligned.
cat report.csv | column -s, -t
kubectl get pods | column -t-s sets the separator. For a quick look at a CSV it beats opening anything.
shell