LoginSignup
1
0

More than 5 years have passed since last update.

AWS CLI ローカルからS3へディレクトリ構造を保ちながらコピーする

Posted at

bucketバケットに folder1/file1と folder2/file2をコピーする

$ tree
.
├── folder1
│   └── file1
└── folder2
    └── file2
$ find folder* -type f | xargs -I{} aws s3 cp {} s3://bucket/{}/ --recursive
1
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
1
0