You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I sometimes have a bucket with versioning enabled, and I want to get copies of all the versions of a given object key. I can do that by using aws s3api list-object-versions, extracting the VersionId, and then execing s5cmd cp --version-id <id> over all the versions, but this seems like a problem s5cmd could solve directly - provide a --all-versions option, or accept some --versions-file containing all the versions I want to download - without requiring a bunch of process execution overhead!
The text was updated successfully, but these errors were encountered:
but if all versions needs to be downloaded file name cannot be inferred from the key. So there should be a way to map different versions to different file names.
I sometimes have a bucket with versioning enabled, and I want to get copies of all the versions of a given object key. I can do that by using
aws s3api list-object-versions
, extracting theVersionId
, and then execings5cmd cp --version-id <id>
over all the versions, but this seems like a problems5cmd
could solve directly - provide a--all-versions
option, or accept some--versions-file
containing all the versions I want to download - without requiring a bunch of process execution overhead!The text was updated successfully, but these errors were encountered: