Skip to content

Instantly share code, notes, and snippets.

@DaysJan
Created August 21, 2019 03:47
Show Gist options
  • Select an option

  • Save DaysJan/2a6675b443d834da8a4dba7dffbaf967 to your computer and use it in GitHub Desktop.

Select an option

Save DaysJan/2a6675b443d834da8a4dba7dffbaf967 to your computer and use it in GitHub Desktop.
Download github latest release asset
#!/bin/bash
# https://help.github.com/en/articles/linking-to-releases
# https://stackoverflow.com/questions/24987542/is-there-a-link-to-github-for-downloading-a-file-in-the-latest-release-of-a-repo
# https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8
curl -s https://api.github.com/repos/owner/name/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep asset-name | wget -qi -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment