gsutil - 查找文件和文件夹

问题描述 投票:0回答:2

是否有类似

find
grep
的命令可以用来搜索我的 Google 存储桶?

我只能找到ls,但这并不是我所需要的。我想搜索包含特定字符串或匹配特定正则表达式的特定文件夹名称和文件名。

google-cloud-platform google-dl-platform
2个回答
9
投票

您可以使用您的系统

grep
:

gsutil ls gs://[BUCKET_NAME]/** | grep {string or regexp}

无需使用

-r
,因为
**
已经使文件夹结构变平。


0
投票

由于

gsutil
工具现已过时,这是新命令

gcloud storage ls gs://[BUCKET_NAME]/** | grep {str or regex}

注意:我的 shell 要求转义 *(星号)字符,所以对我来说它是

gcloud storage ls gs://[BUCKET_NAME]/\*\* | grep {str or regex}
© www.soinside.com 2019 - 2024. All rights reserved.