Skip to content

Instantly share code, notes, and snippets.

@chmouel
Last active May 28, 2019 19:47
Show Gist options
  • Save chmouel/39ff1967d662576b9ba76e507a4104a9 to your computer and use it in GitHub Desktop.
Save chmouel/39ff1967d662576b9ba76e507a4104a9 to your computer and use it in GitHub Desktop.
pushd /usr/local/bin >/dev/null && \
curl -s -L $(curl -L -s "https://api.github.com/repos/openshift/origin/releases/latest"|python -c "import sys, json;x=json.load(sys.stdin);print([ r['browser_download_url'] for r in x['assets'] if 'openshift-origin-client-tools' in r['name'] and 'linux-64bit' in r['name']][0])") -o /tmp/oc.tgz && \
tar xz -f/tmp/oc.tgz --wildcards "*/oc" --strip-components=1 && \
popd >/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment