AWS CLI S3 Notes: Difference between revisions
Jump to navigation
Jump to search
(Created page with "$ aws --profile mystuffa s3 ls --region us-east-1 "s3://s3.amazonaws.com/myfile-file-shares” - DOES NOT WORK VS $ aws --profile mystuffa s3 ls --region us-east-1 "s3://yf...") |
mNo edit summary |
||
Line 1: | Line 1: | ||
<pre> | |||
$ aws --profile mystuffa s3 ls --region us-east-1 "s3://s3.amazonaws.com/myfile-file-shares” - DOES NOT WORK | $ aws --profile mystuffa s3 ls --region us-east-1 "s3://s3.amazonaws.com/myfile-file-shares” - DOES NOT WORK | ||
</pre> | |||
VS | VS | ||
<pre> | |||
$ aws --profile mystuffa s3 ls --region us-east-1 "s3://yfile-file-shares” - WORKS | |||
</pre> | |||
working command: | working command: | ||
<pre> | |||
$ date; time aws --profile mystuffa --region us-east-1 s3 sync /ftp s3://yfile-file-shares/Tools ; date | |||
</pre> |
Revision as of 15:48, 19 August 2020
$ aws --profile mystuffa s3 ls --region us-east-1 "s3://s3.amazonaws.com/myfile-file-shares” - DOES NOT WORK
VS
$ aws --profile mystuffa s3 ls --region us-east-1 "s3://yfile-file-shares” - WORKS
working command:
$ date; time aws --profile mystuffa --region us-east-1 s3 sync /ftp s3://yfile-file-shares/Tools ; date