Created
March 13, 2019 11:50
-
-
Save yuklia/5d91e9d338e2761e21bde32474692f33 to your computer and use it in GitHub Desktop.
install aws-cli script
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
#!/bin/bash | |
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip" && \ | |
sudo apt install -y unzip python && \ | |
unzip awscli-bundle.zip && \ | |
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws && \ | |
rm -rv awscli-bundle.zip awscli-bundle/ | |
aws --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment