#!/usr/bin/env bash
#
# HELPER PURPOSE
#
# Installs the awscli tool
#

# Set error handling
set -eu -o pipefail

# HELPER COMMANDS

# install the awscli
sudo apt-get install awscli
