mirror of https://github.com/lework/script
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
714 B
28 lines
714 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
parse_yaml() {
|
||
|
local prefix=$2
|
||
|
local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
|
||
|
sed -ne "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);
|
||
|
}
|
||
|
}'
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
# include parse_yaml function
|
||
|
#. parse_yaml.sh
|
||
|
|
||
|
# read yaml file
|
||
|
#eval $(parse_yaml zconfig.yml "config__")
|
||
|
|
||
|
# access yaml content
|
||
|
#echo $config__development__database
|