Skip to content

Instantly share code, notes, and snippets.

@libook
Forked from 0xadada/github-latest-release.sh
Last active May 3, 2018 15:51
Show Gist options
  • Save libook/af6b0c0d3f743b0981d2bf67f1ef64ca to your computer and use it in GitHub Desktop.
Save libook/af6b0c0d3f743b0981d2bf67f1ef64ca to your computer and use it in GitHub Desktop.
Download latest GitHub project release
#!/bin/zsh
for url in `curl --silent https://api.github.com/repos/$1/releases/latest | awk '/browser_download_url/ { print $2 }' | sed 's/"//g'`
do
echo $url
curl -LOk $url
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment