Created
February 9, 2021 02:18
-
-
Save kudosqujo/24ce31abe96b4f0364d5cf58a1152769 to your computer and use it in GitHub Desktop.
[HOWTO: Install a Binary] #cli #howto
This file contains 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
# example: installation of `kops` utility | |
curl -Lo kops https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-darwin-amd64 | |
chmod +x kops | |
sudo mv kops /usr/local/bin/kops |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment