After uploading a bunch of user content to your AWS S3 Bucket, what do you do if you want to download all that information to back it up?
Luckily AWS has a CLI that we can use.
Follow the steps below to install the CLI using curl. Amazon's steps are found here.
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
unzip awscli-bundle.zip
sudo ./awscli-bundl...