- Use
curl
to get the JSON response for the latest release - Use
grep
to find the line containing file URL - Use
cut
andtr
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 -
Nice examples, thanks to all. Stil, not always is "browser_download_url" available.
Also, we should assume that *.deb is not enough, rather use amd64.deb or x86_64.deb.
It would be nice if we had permanent file name, to directly use wget of download link, but we also have file names with version.
lastversion works, just it has not in-built install for deb as for rpm.
Here is the example I assume should work for install of
https://github.com/rustdesk/rustdesk/releases/latest
(which does not work with most of solutions):curl -sL https://github.com/rustdesk/rustdesk/releases/latest | grep "https.*releases/download.*amd64\|x86_64\.deb" | grep -oP 'href="\Khttps:.+?"' | sed 's/"//' | wget -i-
Or:
curl -sL https://github.com/rustdesk/rustdesk/releases/latest | grep -wo "https.*x86_64.deb\|https.*amd64.deb"