我在 bash 管道中有一个命令,它返回一个 JSON,如下所示:
$ aws iot get-registration-code
{
"registrationCode": "abcd635"
}
我希望将值放在可以在代码中某处使用abcd635
的变量中。code
//Pseudo code
regCode = aws iot get-registration-code;
code = regCode.registrationCode
do some stuf with the code variable.
这是一种无需使用即可实现此目的的方法jq
吗?我认为这是因为 jq 对于这个简单的 JSON 来说太多了。
阅读
man cut
,man tr
并执行以下操作: