Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Nakon konfiguracije, alat je spreman za korištenje. Općeniti oblik naredbe izgleda ovako:

Code Block
languagebashtext
$ aws --endpoint=https://s3.storage.srce.hr s3 <komanda><akcija> <opcije komande>akcije>

Stvaranje S3 bucketa

Code Block
languagebashtext
$ aws --endpoint=https://s3.storage.srce.hr s3 mb s3://mojbucket

Izlistavanje svih S3 bucketa

Code Block
languagebashtext
$ aws --endpoint=https://s3.storage.srce.hr s3 ls

Kopiranje datoteke u S3 bucket

Code Block
languagebashtext
$ aws --endpoint=https://s3.storage.srce.hr s3 cp datoteka.txt s3://mojbucket

Izlistavanje sadržaja S3 bucketa

Code Block
languagebashtext
$ aws --endpoint=https://s3.storage.srce.hr s3 ls s3://mojbucket

Rekurzivno kopiranje sadržaja direktorija u S3 bucket

Code Block
languagebashtext
aws --endpoint=https://s3.storage.srce.hr s3 cp direktorij/ s3://mojbucket --recursive

...

Rekurzivno izlistavanje S3 bucketa

Code Block
languagetext
$ aws --endpoint=https://s3.storage.srce.hr s3 ls s3://mojbucket --recursive

...