Complete the code to list all buckets in your Google Cloud project.
gsutil [1]The gsutil ls command lists buckets and objects in Google Cloud Storage.
Complete the code to create a new bucket named 'my-new-bucket'.
gsutil [1] gs://my-new-bucketThe mb command creates a new bucket in Google Cloud Storage.
Fix the error in the command to copy a file 'data.txt' to the bucket 'my-bucket'.
gsutil [1] data.txt gs://my-bucketThe cp command copies files to or from buckets.
Fill both blanks to remove the file 'old-data.txt' from the bucket 'archive-bucket'.
gsutil [1] gs://archive-bucket/[2]
The rm command deletes files. You must specify the file name to remove it.
Fill all three blanks to copy all files from local folder 'backup' to the bucket 'data-bucket' recursively.
gsutil [1] -[2] [3] backup/* gs://data-bucket
The cp command copies files. The -r flag copies recursively. The -m flag runs the copy in parallel for speed.