Skip to content

Instantly share code, notes, and snippets.

@nmagee
Last active November 21, 2017 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmagee/0ce2cd44a1c4664783a68a903a4d6264 to your computer and use it in GitHub Desktop.
Save nmagee/0ce2cd44a1c4664783a68a903a4d6264 to your computer and use it in GitHub Desktop.
Installs the AWS CLI tools on Rivanna
#!/bin/bash
set -e
cd ~
mkdir awsinstaller
cd awsinstaller
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
unzip awscli-bundle.zip
./awscli-bundle/install
cd ../
rm -R awsinstaller
echo "export PATH=~/bin:$PATH" >> ~/.bash_profile
@nmagee
Copy link
Author

nmagee commented Apr 21, 2017

To run this file:
chmod 755 install-aws.sh
./install-aws.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment