GitHub Release Downloader
This tool helps you download the latest binaries from GitHub releases quickly using curl or wget. Find out more at the GitHub README for this project.
Let's say you wanted to download the latest version of
ssl-proxy
for your OS:
Download and untar the latest release of ssl-proxy for your OS (will be based on wget's
User-Agent
):
wget -qO- "https://getbin.io/suyashkumar/ssl-proxy" | tar xvz
You can also specify the OS you wish to download for as follows (can be either darwin
,
linux
, or windows
:
wget -qO- "https://getbin.io/suyashkumar/ssl-proxy?os=darwin" | tar xvz
You can also let the server handle uncompression for you:
wget --content-disposition "https://getbin.io/suyashkumar/ssl-proxy?os=darwin?uncompress=true"
You can also use curl
. Note, you must always specify os
with curl.
curl -LJ "https://getbin.io/suyashkumar/ssl-proxy?os=darwin" | tar xvz