Migrate gsutil to gcloud storage

Bug: b/512387213
Change-Id: I14adbef38cd6c10c0cba6bc05fe5a1b02d9e6897
diff --git a/README.md b/README.md
index 0a3a4b2..f821964 100644
--- a/README.md
+++ b/README.md
@@ -471,9 +471,13 @@
 NOTE: When a new test data file is added to the `aom-test-data` bucket, its
 "Public access" is initially "Not public". We need to change its
 "Public access" to "Public" by using the following
-[`gsutil`](https://cloud.google.com/storage/docs/gsutil_install) command:
+[`gcloud storage`](https://docs.cloud.google.com/sdk/docs/install-sdk)
+command:
 ~~~
-    $ gsutil acl ch -g all:R gs://aom-test-data/test-data-file-name
+    $ gcloud storage objects add-iam-policy-binding \
+         gs://aom-test-data/test-data-file-name \
+         --member="allUsers" \
+         --role="roles/storage.objectViewer"
 ~~~
 This command grants the `AllUsers` group READ access to the file named
 "test-data-file-name" in the `aom-test-data` bucket.