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
# the script aws_completer needs to be in your path | |
# this works with v2 of the aws cli installed via brew | |
autoload compinit && compinit | |
autoload bashcompinit && bashcompinit | |
complete -C '/usr/local/bin/aws_completer' aws |
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
yum update | |
yum upgrade | |
yum install -y gcc make cmake git zip | |
yum install -y python27-devel python27-pip make cmake | |
yum install -y libcurl-devel wget zlib-devel openssl-static libffi-devel | |
wget https://www.libssh2.org/download/libssh2-1.8.0.tar.gz | |
tar xvf libssh2-1.8.0.tar.gz | |
cd libssh2-1.8.0 |