Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- grafana
- Kubernetes
- Endpoints
- Await
- optional chaining
- DynamoDB
- docker
- docker swarm
- 단축 평가
- 구조분해 할당
- 자바스크립트
- Service
- api gateway
- On-Premise
- Site-to-Site VPN
- 온프레미스
- elasticsearch
- AWS
- VPC
- cognito
- CloudFormation
- 비구조화 할당
- transit gateway
- JavaScript
- prometheus
- null 병합 연산자
- vgw
- Proxy Resource
- Custom Resource
- 옵셔널 체이닝
Archives
- Today
- Total
만자의 개발일지
[AWS] S3 파일 전체 복사 본문
도커를 공부하다 s3에 있는 파일을 전체 복사할 일이 생겼습니다. 파일 복사는 압축파일이나 단일파일 밖에 안해 봤는데 이번 기회를 통해 정리를 좀 해두려 합니다.
AWS S3 버킷에 있는 모든 파일을 복사하고 싶을때 아래와 같은 명령어를 입려하면 됩니다.
$ aws s3 cp s3://<bucket-name> <destination> --recursive --exclude "*/*"
--recursive --exclude "*/*" 옵션을 붙이면 해당 S3안에 있는 모든 파일을 포함합니다.
ls 명령어를 통해 파일이 잘 복사되었는지 확인할 수 있습니다.
'AWS' 카테고리의 다른 글
[AWS] CodeDeploy appspec.yml 파헤치기 (1) | 2022.01.04 |
---|---|
[AWS] CodeCommit 자격증명 오류(fatal : unable to access...403) (0) | 2021.12.29 |
[AWS] CodeCommit이란 (0) | 2021.11.16 |
[AWS] CI/CD란? (0) | 2021.11.16 |
[AWS] IAM이란 (0) | 2021.11.12 |
Comments