Created
August 21, 2019 03:47
-
-
Save DaysJan/2a6675b443d834da8a4dba7dffbaf967 to your computer and use it in GitHub Desktop.
Download github latest release asset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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