从云存储桶列表下载的最佳方式

best way to download from a list of cloud storage buckets

除了以下操作之外,从云存储桶列表下载的最佳方式是什么:

gsutil cp gs://path1 .
gsutil cp gs://path2 .
gsutil cp gs://path3 .
...
gsutil cp gs://path1000 .

理想情况下还捕获错误消息

我试过了

for i in [gs://path1 gs://path2 ..]
  do gsutil cp $i .
done 

但这没有用。

这是 linux for 循环拼写错误。在没有 []

的情况下执行相同的操作
for i in gs://path1 gs://path2 ..
  do gsutil cp $i .
done