Last active
August 29, 2015 14:18
-
-
Save a-suenami/aaa37e5976d382099175 to your computer and use it in GitHub Desktop.
Install teraffom 0.4.0
This file contains hidden or 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
| #!/bin/sh | |
| mkdir $HOME/.terraform-0.4.0 | |
| cd $HOME/.terraform-0.4.0 | |
| wget https://dl.bintray.com/mitchellh/terraform/terraform_0.4.0_linux_amd64.zip | |
| unzip terraform_0.4.0_linux_amd64.zip | |
| rm terraform_0.4.0_linux_amd64.zip | |
| echo 'export PATH="$HOME/.terraform-0.4.0:$PATH"' >> $HOME/.bash_profile | |
| source $HOME/.bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment