forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e9318f
commit 1711439
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# aws s3 | ||
|
||
> Interface de linha de comando para AWS S3 - provê armazenamento através de uma interface de web services. | ||
> Mais informações: <https://aws.amazon.com/cli>. | ||
- Exibe arquivos de um bucket: | ||
|
||
`aws s3 ls {{nome_do_bucket}` | ||
|
||
- Sincroniza arquivos e diretórios locais para o bucket: | ||
|
||
`aws s3 sync {{caminho/para/arquivos}} s3://{{nome_do_bucket}}` | ||
|
||
- Sincroniza arquivos e diretórios do bucket para diretório local: | ||
|
||
`aws s3 sync s3://{{nome_do_bucket}} {{caminho/para/diretório}}` | ||
|
||
- Sincroniza arquivos e diretórios excluindo algo: | ||
|
||
`aws s3 sync {{caminho/para/arquivos}} s3://{{nome_do_bucket}} --exclude {{arquivo/não/sincronizado}} --exclude {{caminho/não/sincronizado}}/*` | ||
|
||
- Remove arquivo do bucket: | ||
|
||
`aws s3 rm s3://{{nome_do_bucket}}/{{caminho/do/arquivo}}` | ||
|
||
- Somente exibe a prévia das mudanças: | ||
|
||
`aws s3 {{qualquer_comando}} --dryrun` |