Created
May 14, 2020 13:30
-
-
Save circa10a/9f0c41afbe1704a1779fb96cdc26bb5f to your computer and use it in GitHub Desktop.
Shell script to parse yaml
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
#!/usr/bin/env bash | |
function parse_yaml { | |
local prefix=$2 | |
local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034') | |
sed -ne "s|^\($s\):|\1|" \ | |
-e "s|^\($s\)\($w\)$s:$s[\"']\(.*\)[\"']$s\$|\1$fs\2$fs\3|p" \ | |
-e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 | | |
awk -F$fs '{ | |
indent = length($1)/2; | |
vname[indent] = $2; | |
for (i in vname) {if (i > indent) {delete vname[i]}} | |
if (length($3) > 0) { | |
vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")} | |
printf("%s%s%s=\"%s\"\n", "'$prefix'",vn, $2, $3); | |
} | |
}' | |
} | |
# create yaml | |
echo " | |
key: | |
nested_key: value | |
" > ./test.yaml | |
# Set values as variables from input yaml path | |
eval $(parse_yaml ./test.yaml) | |
# echo value of nested_key | |
echo $key_nested_key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment