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.
是否有find或类似grep的命令可用于搜索我的 Google 存储桶?
find
grep
我只能找到ls,但这不是我所需要的。我想搜索包含特定字符串或匹配特定正则表达式的特定文件夹名称和文件名。
您可以使用您的系统grep:
gsutil ls gs://[BUCKET_NAME]/** | grep {string or regexp}
无需使用-r,因为**已经展平了文件夹结构。
-r
**