Created
August 27, 2024 06:46
-
-
Save apotek/78a8789fbb7d8d96a86e2cb8884f3410 to your computer and use it in GitHub Desktop.
This file contains 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
# Get a list of the top level keys in a yaml file suitable for shell loop | |
yq e '(. | keys)[]' example.yaml | |
# Example: | |
# for key in $(yq e '(. | keys)[]' example.yaml); do | |
# echo $key | |
# done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment