Sai Karthik

Balancing the braces ...

Github Release Info From CLI

June 29, 2023 | 1 minute read

It’s very easy to keep track of a github project’s release from the linux CLI using just curl & jq.

An example of getting latest release from the razorpay’s ifsc repo:

curl -s https://api.github.com/repos/razorpay/ifsc/releases?per_page=1  | jq -r '.[0].name'
Comment | Share

Tags: cli github curl jq