作者:dishonest的你_507 | 来源:互联网 | 2023-07-22 17:54
本文由编程笔记#小编为大家整理,主要介绍了markdown AWS aws cli amazon相关的知识,希望对你有一定的参考价值。
# AWS
* [AWS CLI Github](https://github.com/aws/aws-cli)
* [AWC CLI Docs](http://docs.aws.amazon.com/cli/latest/reference/s3/index.html)
* [AWS Secret key](https://console.aws.amazon.com/iam/home?#/security_credential)
```bash
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ sudo python get-pip.py
$ sudo pip install awscli --ignore-installed six # OS X
```
```bash
$ mkdir ~/.aws
$ aws configure
```
## AWS CLI
```bash
$ aws s3 cp s3://studio363 . --recursive # Copy all files from bucket to local dir
$ aws s3 sync . s3://studio363 # Sync all local files with s3 bucket
```