AWS cp不复制所有文件

时间:2018-07-25 07:18:37

标签: amazon-web-services amazon-s3 file-copying

while IFS='' read -r line || [[ -n "$line" ]]; do

aws s3 cp s3://abc/$line s3://xyz/  --profile prod --recursive

done < "$1"

在我正在使用的终端机中

./s3-copy.sh images-to-copy.txt

images-to-copy.txt是: 15.jpeg 16.jpeg 17.jpeg

这只是将最后一个元素复制到我的S3存储桶中,即17.jpeg。有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

您可以使用AWS S3 Sync

示例命令:aws s3 sync s3://$SOURCE_BUCKET/ .