add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# aws s3 mv
> 将本地文件或 S3 对象移动到本地或 S3 中的另一个位置。
> 更多信息:<https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/mv.html>。
- 将文件从本地移动到指定的存储桶:
`aws s3 mv {{path/to/local_file}} s3://{{bucket_name}}/{{path/to/remote_file}}`
- 将特定的 S3 对象移动到另一个存储桶:
`aws s3 mv s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}/{{path/to/target}}`
- 将特定的 S3 对象移动到另一个存储桶,同时保留原始名称:
`aws s3 mv s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}`
- 显示帮助:
`aws s3 mv help`