当前项目目录位于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
如果我做错了什么,请您纠正?