## AWS S3
# 查看S3文件/文件夹
aws ls s3://<bucket>/<folder>/... [--summary --human-readable]
# 删除S3文件
aws s3 rm <s3 path>
# 本地文件上传到S3
aws s3 cp <local path> <s3 path>
# S3文件下载到本地
aws s3 cp <s3 path> <local path>
# 同步文件夹
aws s3 sync <local path> <s3 path>
aws s3 sync <s3 path> <local path>
## 自建S3
# 查看S3文件/文件夹
s3cmd ls <s3 path>
# 上传文件到S3
s3cmd put <local path> <s3 path>
# 从S3下载文件
s3cmd get <s3 path> <local path>