Skip to content

Instantly share code, notes, and snippets.

@yuklia
Created March 13, 2019 11:50
Show Gist options
  • Save yuklia/5d91e9d338e2761e21bde32474692f33 to your computer and use it in GitHub Desktop.
Save yuklia/5d91e9d338e2761e21bde32474692f33 to your computer and use it in GitHub Desktop.
install aws-cli script
#!/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