...
From here, you now have access to your AWS S3 buckets and can perform a variety of different commands in order to move data. AWS has some pretty verbose documentation detailing how to move files in a variety of different ways. TODO:
Recusivly copying data directory and all of its sub-contents:
If you would like to move data within a directory (and all sub-directories), you can use the following command with a --recursive
flag in order to achieve this.
Code Block |
---|
$ aws s3 cp --recursive s3://my-bucket-name/subfolder/ /home/USER/destination-directory/ |