Created
July 10, 2025 17:47
-
-
Save texasdave2/e76909c570db7a53dd5907c27b16dd6f to your computer and use it in GitHub Desktop.
linux aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# some more ls aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias gp='kubectl get pods' | |
alias dp='kubectl describe pod' | |
alias kc='kubectl create' | |
alias ka='kubectl apply' | |
alias gl='kubectl logs' | |
alias gs='kubectl get svc' | |
alias gn='kubectl get nodes' | |
alias gpvc='kubectl get pv,pvc' | |
alias kr='kubectl run -o yaml --dry-run' | |
alias dush='du -shcx ./* | sort -rh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment