Copying files to AWS s3 from Ubuntu
From Cramsession
✍️ Verified Author: Mflavell • Click to view professional profile & credentials
Tech Notes > AWS > Copying files to AWS s3 from Ubuntu
First, AWS tools
Make sure you have AWS tools installed before doing this.
Generare an key
Copy Commands
Copy a single file
aws s3 cp display_server.ova s3://s3-bucket-name/path
Recursive copy of an extension
aws s3 cp . s3:/s3-bucket-name/ --recursive --exclude "*" --include "*.ova"