multiple pages: add korean translation (#3548)

This commit is contained in:
lch7167
2019-11-13 06:17:52 +09:00
committed by Starbeamrainbowlabs
parent 5b34319212
commit a451d973e8
23 changed files with 536 additions and 0 deletions

28
pages.ko/common/aws-s3.md Normal file
View File

@@ -0,0 +1,28 @@
# aws s3
> AWS S3용 CLI - 웹 서비스 인터페이스를 통해 스토리지를 제공합니다.
> 더 많은 정보는: <https://aws.amazon.com/cli>.
- 버킷 안의 파일 보기:
`aws s3 ls {{bucket_name}}`
- 로컬에서 버킷으로 파일 및 디렉토리 동기화:
`aws s3 sync {{path/to/files}} s3://{{bucket_name}}`
- 버킷에서 로컬로 파일 및 디렉토리 동기화:
`aws s3 sync s3://{{bucket_name}} {{path/to/target}}`
- 제외 된 파일 및 디렉토리 동기화:
`aws s3 sync {{path/to/files}} s3://{{bucket_name}} --exclude {{path/to/file}} --exclude {{path/to/directory}}/*`
- 버킷에서 파일 제거:
`aws s3 rm s3://{{bucket}}/{{path/to/file}}`
- 변경 사항만 미리보기:
`aws s3 {{any_command}} --dryrun`