aws cp忽略--exlude字符串作为变量

时间:2018-11-20 11:37:04

标签: amazon-web-services amazon-s3 amazon-ec2 aws-cli

当前项目目录位于Amazon S3存储桶中,我想将某些目录下载到EC2实例中,但目录很少。

仅当我在下面的aws命令中明确提及null选项时,我才能下载所需的目录。

archive.bash

--exclude

但是当我以编程方式形成aws --region=xxxxxxx s3 cp ${S3WebAssetsPath} ${contentFolderPath} --recursive --exclude "*dir1/*" --exclude "*dir2/*" --exclude "*dir3/*" --exclude "*dir4/*" S3WebAssetsPath="Source s3 path" {contentFolderPath="Destination Local folder" 字符串并将其存储在变量中时。然后--exclude命令将忽略“排除目录”命令,并下载路径中的所有文件。例如:

aws cp

如果我做错了什么,请您纠正?

0 个答案:

没有答案