mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 16:02:08 +02:00

* common/s*: add and update Korean translation * scamper: fix typo * Update pages.ko/common/simplehttpserver.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/steamcmd.md Co-authored-by: Chooooo <contact@choo.ooo> --------- Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com> Co-authored-by: Chooooo <contact@choo.ooo>
812 B
812 B
s3cmd
S3 호환 객체 저장소에서 데이터를 업로드, 검색 및 관리하기 위한 커맨드라인 도구 및 클라이언트. 더 많은 정보: https://s3tools.org/s3cmd.
- 구성/재구성 도구 실행:
s3cmd --configure
- 버킷/폴더/객체 나열:
s3cmd ls s3://{{버킷|경로/대상/파일}}
- 버킷/폴더 생성:
s3cmd mb s3://{{버킷}}
- 버킷에서 특정 파일 다운로드:
s3cmd get s3://{{버킷_이름}}/{{경로/대상/파일}} {{경로/대상/로컬_파일}}
- 버킷에 파일 업로드:
s3cmd put {{로컬_파일}} s3://{{버킷}}/{{파일}}
- 객체를 특정 버킷 위치로 이동:
s3cmd mv s3://{{원본_버킷}}/{{원본_객체}} s3://{{대상_버킷}}/{{대상_객체}}
- 특정 객체 삭제:
s3cmd rm s3://{{버킷}}/{{객체}}