Last active
March 13, 2026 11:40
-
-
Save schnatterer/411998f482d97a02bc706618bccd9176 to your computer and use it in GitHub Desktop.
kubectl krew list plugins with version and URL
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
| for f in ~/.krew/receipts/*.yaml; do | |
| plugin=$(basename "$f" .yaml) | |
| version=$(awk -F': ' '/^ version:/ {print $2}' "$f") | |
| homepage=$(awk -F': ' '/^ homepage:/ {print $2}' "$f") | |
| printf "%s\t%s\t%s\n" "$plugin" "$version" "$homepage" | |
| done | column -t -s $'\t' |
Author
schnatterer
commented
Mar 13, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment