I have a large number of images (.jpg) stored in a Google Cloud Storage that I would like to use in Google Colab.
For this I use (in google Colab)
GCS_PATH = "gs://bucket/prefix"
!gsutil -m cp -r {GCS_PATH} ./data
However when running, Google colab prints each transfer to the cell's output which makes my browser slow. I was wondering if there is a --quiet or --silent flag for gsutil cp. I checked gsutil help cp
but couldn't find anything.