Google Storage for Developers

To copy data to and from Google Storage for Developers, you can use the command-line tool GSUtil.

Escaping from Google Storage for Developers


To local storage: gsutil cp gs://bucket/* local_directory/
To another provider: gsutil cp gs://bucket/* s3://bucket/

Escaping to Google Storage for Developers


From local storage: gsutil cp local_directory/ gs://bucket/*
From another provider: gsutil cp s3://bucket/* gs://bucket/

More information