I'm copying between s3 buckets files from specific dates that are not sequence. In the example I'm copying from the 23, so I'd like to copy 15th, 19, and 23rd.
aws s3 --region eu-central-1 --profile LOCALPROFILE cp s3://SRC s3://DEST --recursive --exclude "*" --include "2016-01-23"
This source mentions using sequences http://docs.aws.amazon.com/cli/latest/reference/s3/ for include.
include
conditions? – John Rotenstein