summaryrefslogtreecommitdiff
path: root/rskrf-productGroups.sh
blob: e835f615bf744ffa0cc2aacc2c6b058900f3c84a (plain)
1
2
3
4
5
6
7
#!/bin/sh
burl=https://rskrf.ru/rest/1/catalog/categories/
curl -s $burl | jq -cr '.response[]|.id' |
  xargs -I '{}' curl -s $burl'{}' |
  jq -cr '.response[]|.id' |
  xargs -I '{}' curl -s $burl'{}'/productGroups/ |
  jq -cr '.response.productGroups[]|[.id,.title]'