根据cURL响应创建许多变量-Bash

Let's assume, I have this package jq installed. So I ran this command

curl -s ipinfo.io/33.62.137.111

得到这个结果

{
  "ip": "33.62.137.111",
  "city": "Columbus",
  "region": "Ohio",
  "country": "US",
  "loc": "39.9690,-83.0114",
  "postal": "43218",
  "timezone": "America/New_York",
  "readme": "https://ipinfo.io/missingauth"
}

I know I can get city by doing this

curl -s ipinfo.io/33.62.137.111 | jq -r'.city'

I know I can get region by doing this

curl -s ipinfo.io/33.62.137.111 | jq -r'。区域'

我试图卷曲7次以创建7个变量。

是否可以根据第一个curl响应创建多个变量?