Tag: cli
-
How to Use AWS CLI to copy everything from your bucket
If you want to copy everything from a S3 bucket to the current directory, you can use the following command C:temp> aws s3 cp s3://bucketname/ . –include “*” –recursive This assumes that you have already installed and configured the the AWS CLI tools. To install the tools, do a search for “AWS CLI tools”. To configure…