Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save steinwaywhw/a4cd19cda655b8249d908261a62687f8 to your computer and use it in GitHub Desktop.

Select an option

Save steinwaywhw/a4cd19cda655b8249d908261a62687f8 to your computer and use it in GitHub Desktop.
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -qi -
@antofthy
Copy link

antofthy commented Jan 16, 2026

@eabase
sed is not implemented equally across platforms (x-platform = "cross platform")...
It also depends on your bash and sh options via (set, shopt)...

First I ever heard of bash and sh options effecting any command that isn't a builtin to bash and sh (apart from command parsing that is). I'm pretty good with shell (35+ years experience)... Please enlighten!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment