I am having trouble downloading multiple files from AWS S3 buckets to my local machine.
I have all the filenames that I want to download and I do not want others. How c
As per the doc you can use include and exclude filters with s3 cp as well. So you can do something like this:
include
exclude
s3 cp
aws s3 cp s3://bucket/folder/ . --recursive --exclude="*" --include="2017-12-20*"
Make sure you get the order of exclude and include filters right as that could change the whole meaning.