AWS
AWS CLI : 로컬 폴더와 S3 폴더 동기화 (싱크, sync)
Kyle79
2019. 6. 12. 09:53
AWS CLI : 로컬 폴더와 S3 폴더 동기화 (싱크, sync)
제목과 같이 로컬에 존재하는 폴더와 S3 폴더를 동기화하는 방법은 아래 URL에 잘 나와 있네요 !! https://aws.amazon.com/ko/getting-started/tutorials/backup-to-s3-cli/ 간단한 사항 몇 가지만 따로 기록해둡..
ngee.tistory.com
aws s3 sync ./report s3://insight-media-row/backup --acl public-read --delete --cache-control max-age=31536000 --no-verify-ssl
aws s3 cp ./report s3://insight-media-row/backup --recursive
find /ml/03.CRAWLER/dw-fire/download/report -name *$(date -d 'yesterday' +'%Y%m%d')* -exec ls -l {} \;