Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 AWS S3 使用名为 s3cmd 的 cmd 工具。我正在尝试“获取”由名称目录名称的前面部分过滤的文件夹集,例如“/192.168.*/”。基本上我有很多目录的 S3 存储桶,我只需要几个以特定字符串开头的目录。这是我到目前为止所拥有的。将不胜感激任何帮助:) 谢谢!
s3cmd get --recursive --include '192.168*' s3://mys3bucket/logfiles/
上面的代码从 /logfiles/ 中拉下所有目录。:(
s3cmd get --recursive s3://mys3bucket/logfiles/192.168
如果你想“过滤”匹配某个名称的文件,你可以这样做:
s3cmd get --recursive --exclude '*' --include 'filename*' s3://my-bucket/cheese