| OLD | NEW |
| 1 # gsutil | 1 # gsutil |
| 2 | 2 |
| 3 gsutil is a Python application that lets you access Google Cloud Storage from | 3 gsutil is a Python application that lets you access Google Cloud Storage from |
| 4 the command line. You can use gsutil to do a wide range of bucket and object | 4 the command line. You can use gsutil to do a wide range of bucket and object |
| 5 management tasks, including: | 5 management tasks, including: |
| 6 | 6 |
| 7 * Creating and deleting buckets. | 7 * Creating and deleting buckets. |
| 8 * Uploading, downloading, and deleting objects. | 8 * Uploading, downloading, and deleting objects. |
| 9 * Listing buckets and objects. | 9 * Listing buckets and objects. |
| 10 * Moving, copying, and renaming objects. | 10 * Moving, copying, and renaming objects. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 Run the "gsutil help" command for a list of the built-in gsutil help topics. | 31 Run the "gsutil help" command for a list of the built-in gsutil help topics. |
| 32 | 32 |
| 33 You can also browse the help pages online at: | 33 You can also browse the help pages online at: |
| 34 | 34 |
| 35 https://developers.google.com/storage/docs/gsutil | 35 https://developers.google.com/storage/docs/gsutil |
| 36 | 36 |
| 37 For community support, visit: | 37 For community support, visit: |
| 38 | 38 |
| 39 https://developers.google.com/storage/docs/resources-support#community | 39 https://developers.google.com/storage/docs/resources-support#community |
| 40 | 40 |
| 41 ## Scripts | |
| 42 | |
| 43 The scripts directory contains useful scripts built atop gsutil. | |
| 44 | |
| 45 ### Bucket Relocation | |
| 46 | |
| 47 The `bucket_relocate.sh` script can be used to migrate one or more buckets to a | |
| 48 different location and/or storage class. Detailed instructions are provided | |
| 49 if you run the script with no arguments. | |
| OLD | NEW |