Skip to content

Instantly share code, notes, and snippets.

@mikaelkrief
Created July 9, 2018 15:55
Show Gist options
  • Save mikaelkrief/4fa604c95c86fb1029964bd339294e0a to your computer and use it in GitHub Desktop.
Save mikaelkrief/4fa604c95c86fb1029964bd339294e0a to your computer and use it in GitHub Desktop.
wget https://releases.hashicorp.com/terraform/0.11.7/terraform_0.11.7_linux_amd64.zip -O terraform.zip
unzip terraform.zip
mv terraform /home/${USER}/.local/bin/
if [[ “:$PATH:” == *”:$HOME/.local/bin”* ]]; then echo “Your path is correctly set” else PATH=$PATH:/home/${USER}/.local/bin export PATH fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment