yml(파서 코드) 읽기 도움말:https://gist.github.com/pkuczynski/8665367
내 YML 파일은 다음과 같습니다
marketVal:
envVal:
hostVal: ipValue
.sh 파일에서 다음과 같이 읽었습니다.
market $1
env $2
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);
}
}'
}
eval $(parse_yaml hostList.yml "config_")
#Here my property key is "config_marketValue_envValue_hostVal"
# so the value of "config_marketValue_envValue_hostVal" is properly coming as "ipValue"
echo ${config_marketValue_envValue_hostVal}
#As I can not hard code the marketVal etc so the key will be like
# "config_${market}_${env}_hostVal"
이제 스크립트에서 다음과 같은 작업을 수행하면:
key="config_${market}_${env}_hostVal"
echo ${key}
ip_value=${key}
echo ${ip_value}
인쇄.
config_${market}_${env}_hostVal *nothing get printed for echo ${ip_value}*
예상되는 결과는 다음과 같습니다.
config_marketValue_envValue_hostVal
ipValue
누구든지 이 값을 읽으려면 여기에서 수행할 작업을 제안할 수 있습니까? 저는 쉘 스크립팅을 처음 접하는 사람이므로 도움을 주시면 매우 감사하겠습니다.