gpt4 book ai didi

linux - 从 shell 脚本中提取 YAML 中的变量

转载 作者:行者123 更新时间:2023-12-04 16:18:06 25 4
gpt4 key购买 nike

我有一个由以下内容组成的 YAML 文件:

acceleration_matrix:
# 1ere row: x
- [20, 0, 0, 15, 15]
# 2eme row: y
- [0, 15, 0, 0, 0]
# 3eme row: z
- [0, 0, 30, 15, -15]
# 4eme row: repere de l'acceleration
- [0, 0, 0, 0, 0]
# 5eme row: loadcase_id
- [1, 2, 3, 4, 5]
我想提取最后一行的最后一个值(在本例中为 5 )取消使用 shell 脚本。
使用 this article ,我编码:
#!/bin/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);
}
}'
}

parse_yaml nastran_acceleration_matrix.yml

echo $acceleration_matrix
但由于我是 shell 新手,我找不到如何提取值。
我想要的只是类似:
set number_load_case = ### acceleration_matrix[-1,-1] ### (I'm more used to coding in python thus the -1 aka last row/column)
有人可以帮我吗?
提前致谢!

最佳答案

安装 shyml

 $ pip install shyaml      ## installation

conda env create -f environment.yml -n cat test.yaml | shyaml get-value conda_env_name
安装 shyaml 后,您可以尝试上述命令。
如果这对您不起作用,那么您可以尝试 'jq' 'yq' 在 bash 脚本中,它会将您的 yaml 解析为 json,然后您可以从 JSON 读取值,之后您可以从 bash 本身运行您的命令。

关于linux - 从 shell 脚本中提取 YAML 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68472139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com