2
I have the following command of AWS Cli that runs on Windows Powershell and downloads a specific folder inside a S3 Bucket:
aws s3 cp s3://rfcarga/RF73 . --recursive
But I have other collections of images to download too, follows example:
aws s3 cp s3://rfcarga/RF73 . --recursive
aws s3 cp s3://rfcarga/RF73A . --recursive
aws s3 cp s3://rfcarga/RF73Ba . --recursive
aws s3 cp s3://rfcarga/RF73Bb . --recursive
aws s3 cp s3://rfcarga/RF73Ca . --recursive
aws s3 cp s3://rfcarga/RF73Cb . --recursive
aws s3 cp s3://rfcarga/RF73D . --recursive
I would not like to run one by one but all in one ENTER, as I run several commands one after the other at once in Powershell?
Maybe, aws S3 cp S3://rfcarga/RF73*
– Reginaldo Rigo