Download, Move, and Delete Objects
Learn about some basic and useful operations applicable to S3 objects.
Download an object with the AWS CLI
Using AWS CLI
-
We can use the
cpcommand to download objects.Example 1:
aws s3 cp s3://my-pets/dingo.jpg ./The command above copies the object
dingo.jpgto the current workingExample 2:
Using the
cpcommand above, we can only copy one object at a time. To download multiple objects, we use the ...
Ask