
aws-s3-cp
List of commands for aws-s3-cp:
-
aws-s3-cp:tldr:22e21 aws-s3-cp: Copy S3 objects to a local directory recursively.$ aws s3 cp s3://${bucket_name} . --recursivetry on your machineexplain this command
-
aws-s3-cp:tldr:28b76 aws-s3-cp: Copy a specific S3 object into another bucket keeping the original name.$ aws s3 cp s3://${bucket_name1}/${filename} s3://${bucket_name2}try on your machineexplain this command
-
aws-s3-cp:tldr:59c8d aws-s3-cp: Display help.$ aws s3 cp helptry on your machineexplain this command
-
aws-s3-cp:tldr:9e559 aws-s3-cp: Copy a specific S3 object into another bucket.$ aws s3 cp s3://${bucket_name1}/${filename} s3://${bucket_name2}/${path-to-target}try on your machineexplain this command
-
aws-s3-cp:tldr:eb9b7 aws-s3-cp: Copy a file from local to a specific bucket.$ aws s3 cp ${filename} s3://${bucket_name}/${path-to-remote_file}try on your machineexplain this command