我正在尝试使用s3 bash代码here来获取并存放在S3存储桶中。
我在命令
中遇到了我的AWS秘密访问密钥ID文件的问题./s3-get -k access_key_ID -s secret_access_key_ID_file /bucket_url/file
我一直收到此错误
s3-get: We do not understand Amazon AWS secret keys which are not 40 bytes long. Have you included a carriage return or line feed by mistake at the end of the secret key file?
我知道它正在寻找一个40字节的密钥文件,但是从我的亚马逊IAM密钥ID直接复制和粘贴到文件中只能生成一个37字节的文件。
-rw-r--r-- 1 destin destin 37 May 26 12:13 secret_key_id
我有什么遗漏或做错了吗?有没有更好的方法通过bash从S3检索文件?
由于