0
0

More than 3 years have passed since last update.

AWS S3 からバケットごと一括でダウンロードするとき手順メモ

Last updated at Posted at 2021-05-13

AWS S3 からバケットごと落としてくるとき自分用メモです。
初めてされる方は公式ドキュメントを読みましょう。

aws コマンドのインストール

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
aws --version

接続情報の設定

aws configure

バケット取ってくる

mkdir bucket-name
aws s3 cp -r s3://bucket-name ./bucket-name/ --exclude "*_logs*" --recursive
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0