- 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 -
From batch scripts on Windows, you can call PowerShell without directly using its shell.:
First download grep.exe from this fairly popular but unmantained repo -because findstr sucks-
powershell iwr https://github.com/bmatzelle/gow/raw/refs/heads/master/bin/grep.exe -OutFile grep.exe
Then you can download your files like this.
Just replace
user/repo
andzip
.