aws s3 cli upload file to bucket code example
Example 1: how to upload files to s3 bucket from mac shell
aws s3 mv . s3://YOUR_BUCKET_NAME --recursive --exclude "*.DS_Store"
Example 2: how to upload files to s3 bucket from mac shell
// If YOU WANT TO MAKE FILES AND FOLDERS Public
aws s3 sync . s3://dronervm --acl public-read --exclude "*.DS_Store"