gpt4 book ai didi

amazon-web-services - 使用 AWS S3 同步排除多个文件夹

转载 作者:行者123 更新时间:2023-12-03 07:48:12 29 4
gpt4 key购买 nike

如何在使用 aws s3 syn 时排除多个文件夹?

我尝试过:

    # aws s3 sync s3://inksedge-app-file-storage-bucket-prod-env \ 
s3://inksedge-app-file-storage-bucket-test-env \
--exclude 'reportTemplate/* orders/* customers/*'

但它仍在同步文件夹“customer”

输出:

    copy: s3://inksedge-app-file-storage-bucket-prod-env/customers/116/miniimages/IMG_4800.jpg
to s3://inksedge-app-file-storage-bucket-test-env/customers/116/miniimages/IMG_4800.jpg

copy: s3://inksedge-app-file-storage-bucket-prod-env/customers/116/miniimages/DSC_0358.JPG
to s3://inksedge-app-file-storage-bucket-test-env/customers/116/miniimages/DSC_0358.JPG

最佳答案

最后这对我有用:

aws s3 sync s3://my-bucket s3://my-other-bucket \
--exclude 'customers/*' \
--exclude 'orders/*' \
--exclude 'reportTemplate/*'

提示:您必须将通配符和特殊字符括在单引号或双引号中才能正常工作。以下是匹配字符的示例。有关 S3 命令的更多信息,请查看 amazon here .

*: Matches everything
?: Matches any single character
[sequence]: Matches any character in sequence
[!sequence]: Matches any character not in sequence

关于amazon-web-services - 使用 AWS S3 同步排除多个文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32393026/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com