Skip to content

Instantly share code, notes, and snippets.

@dawud
Last active December 4, 2018 16:08
Show Gist options
  • Save dawud/767d1e0437a6676c1a9ccb1ee100e843 to your computer and use it in GitHub Desktop.
Save dawud/767d1e0437a6676c1a9ccb1ee100e843 to your computer and use it in GitHub Desktop.
Retrieve latest OpenShift Origin release from GitHub and extract to local bin
#!/usr/bin/bash
curl -sSL \
$(curl -s https://api.github.com/repos/openshift/origin/releases/latest | \
jq -r '.assets[] | select(.name | test("openshift-origin-client-tools.*linux")) | .browser_download_url') | \
tar -C /usr/local/bin/ --strip-components=1 -xz */oc
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment