跳至主要内容

[AWS] AWS CLI

AWS CLI

到官網下載 AWS CLI 後,在 Terminal 輸入:

$ aws configure

接著填入「AWS Access Key ID」和「AWS Secret Access Key」。

S3

# 查閱說明
$ aws s3 help

# 檢視檔案
$ aws s3 ls help
$ aws s3 ls # 列出所有 bucket
$ aws s3 ls s3://mybucket --recursive --human-readable --summarize

# 上傳、下載或複製檔案
# aws s3 cp <LocalPath> <S3Uri> or <S3Uri> <LocalPath> or <S3Uri> <S3Uri>
$ aws s3 cp build s3://pjchender-fem-aws-fe --recursive

Giscus