I have the following AWS Cli command that runs on Windows PowerShell and downloads a specific folder inside an S3 bucket:
aws s3 cp s3://rfcarga/RF73 . --recursive
However, I have other collections of images to download as well, for 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 only, how do I run multiple commands one after another at PowerShell?