Skip to content

Instantly share code, notes, and snippets.

@stevenyap
Created February 21, 2014 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stevenyap/9130866 to your computer and use it in GitHub Desktop.
Save stevenyap/9130866 to your computer and use it in GitHub Desktop.
AWS S3 Command Line

S3 Syncing

# sync from bucket to local
aws s3 sync <bucket> <target_folder> <options>
aws s3 sync s3://mybucket . --acl public-read

# sync from local to bucket
aws s3 sync <target_folder> <bucket>

Copying

aws s3 cp s3://stapi-us/production/ s3://stapi-us/development/ --recursive --acl public-read-write

Install AWS CLI

  • You need this for the receipe above
brew install python # installs python and pip
pip install awscli # installs aws
aws configure

# Now you can use aws cli
# If you encounter any error, see this: https://github.com/dotcloud/dotcloud-cli/issues/23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment