Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
aws s3 cp ~/Downloads/file1.zip s3://bucket-name/path/to/destination --acl public-read
Tip
titleTip

Instead of typing the path to the file on your computer, simply drag the file into the terminal.

Note
titleNote

If you don't include –acl public-read, no one will be able to see your file!

Remove a file:

Code Block
aws s3 rm s3://bucket-name/path/to/file

...