Is there a find
or grep
-like command that I can use to search my Google Buckets?
I can only find ls, but it is not quite what I need. I want to search for specific folder names and file names, that contain a certain string or match a certain regex.
gsutil ls -r gs://[BUCKET_NAME]/[PREFIX]**
wich will let you search objects by a certain prefix. Otherwise you can elaborate a script to find specific names or prefix using as example this Listing objects documentation. – Shebashebang