CLI Tools
Interesting Links
- Why does 0.1 + 0.2 = 0.30000000000000004?
- The Rust Implementation Of GNU Coreutils Is Becoming Remarkably Robust
- What is a kubeconfig file?
- Why We Need Open Source Mentorship Programs at the Linux Foundation
- Using a 1930 Teletype as a Linux Terminal
Tip of the Week
Using the watch
command:
# the most basic usage:
watch kubectl get pods -n NAMESPACE
# increase the interval:
watch -n 5 kubectl get pods -n NAMESPACE
# highlight differences between runs:
watch -d kubectl get pods -n NAMESPACE
# highlight differences from initial run:
watch -d=permanent kubectl get pods -n NAMESPACE
# kubectl has a builtin watch option:
kubectl get pods -n NAMESPACE -w