1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-26 06:44:14 +02:00
tldr/pages.it/common/aws-s3.md
Francesco Franchina 28c4d26221
pages.it/*: update path placeholders and "directory" translations (#9031)
- Replace "al" -> "del", "alla" -> "della", etc. in command paths
- Replace all instances of "cartella" with "directory"
- Update contributing-guides/translation-templates/common-arguments.md to
  reflect these changes

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Marco Bonelli <marco@mebeim.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2022-10-20 15:26:58 +02:00

848 B

aws s3

CLI per AWS S3 - fornisce spazio di archiviazione tramite le interfacce di Amazon Web Services. Maggiori informazioni: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/index.html.

  • Mostra file in un bucket:

aws s3 ls {{nome_bucket}}

  • Sincronizza file e directory locali su un bucket:

aws s3 sync {{percorso/dei/file}} s3://{{nome_bucket}}

  • Sincronizza file e directory da un bucket in locle:

aws s3 sync s3://{{nome_bucket}} {{path/to/target}}

  • Sincronizza file e directory escludendo alcuni file o directory:

aws s3 sync {{percorso/dei/file}} s3://{{nome_bucket}} --exclude {{percorso/del/file}} --exclude {{directory}}/*

  • Rimuovi un file dal bucket:

aws s3 rm s3://{{bucket}}/{{percorso/del/file}}

  • Mostra solo un'anteprima dei cambiamenti:

aws s3 {{qualsiasi_comando}} --dryrun