【发布时间】:2019-08-31 08:38:17
【问题描述】:
我正在尝试将目录中以“model.ckpt”开头的所有文件同步到 S3 存储桶路径,方法是:
aws s3 sync ./model.ckpt* $S3_CKPT_PATH
但我得到了错误:
Unknown options: ./model.ckpt-0.meta,<my S3_CKPT_PATH path>
但是,aws s3 sync . $S3_CKPT_PATH 可以工作,但给了我很多我不想要的额外文件。
有人知道我该怎么做吗?
【问题讨论】:
标签: amazon-web-services amazon-s3 synchronization wildcard aws-cli