根据https://docs.aws.amazon.com/cli/latest/reference/s3api/put-object.html
使用aws s3api将文件放入存储桶的行是
aws s3api put-object --bucket text-content --key dir-1/my_images.tar.bz2 --body my_images.tar.bz2
我使用上面的示例将文件放入存储桶:
$ aws s3api put-object --bucket mybucket-witha3api2 --key
test/TestDataforAWSs3api.txt --body TestDataforAWSs3api.txt
{
"ETag": "\"d41d8cd98f00b204e9800998ecf8427e\""
}
列出存储桶后,我将看到以下内容:
aws s3 ls s3://mybucket-witha3api2/test
PRE test/
我不确定文件TestDataforAWSs3api.txt在哪里,什么是PRE?您能解释一下我的CL有什么问题吗?
谢谢。