gpt4 book ai didi

linux - 从脚本的输出中提取一个值并将其存储在变量linux中?

转载 作者:太空宇宙 更新时间:2023-11-04 04:54:24 26 4
gpt4 key购买 nike

我有一个命令,如果执行,它会给出以下输出:

[abctt]$ /abc/prr/test.sh config -get center.id
Connecting to the service endpoint at http://localhost:8003

POY Properties:
UU001

现在我想提取“UU001”值并将其存储在变量中,然后打印该变量值。所以我尝试了类似下面的方法,但它给了我错误:

[abctt]$ id=`/abc/prr/test.sh config -get center.id | tail -2`;echo $id
id=UU001: Command not found.
id: Undefined variable.

我在这里做错了什么?

最佳答案

您的代码在脚本内是正确的。

试试这个:

export id=`/abc/prr/test.sh config -get center.id | tail -2`;echo $id

如果您使用的是 csh,

set id=`/abc/prr/test.sh config -get center.id | tail -2`;echo $id

关于linux - 从脚本的输出中提取一个值并将其存储在变量linux中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51162090/

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