我的系统中安装了jsawk,resty和spidermonkey。而且效果很好。
现在我想将jsawk的返回变量解析为bash变量。 我已经尝试过了,它有效。但我想将值存储在变量中。
#!/bin/bash
aipi=$(curl -s ipinfo.io/json)
echo $aipi | jsawk 'return this.city'
echo $aipi | jsawk 'return this.region'
echo $aipi | jsawk 'return this.country'
感谢您的帮助,这是我的第一个问题。