1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:42:07 +02:00

gsutil: add page (#7961)

* gsutil: add page

* Update pages/common/gsutil.md

use lower snake case

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Update pages/common/gsutil.md

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Update pages/common/gsutil.md

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Update pages/common/gsutil.md

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Update pages/common/gsutil.md

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Update pages/common/gsutil.md

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Update pages/common/gsutil.md

Co-authored-by: pixel <chrissx@chrissx.de>

* Update pages/common/gsutil.md

Co-authored-by: pixel <chrissx@chrissx.de>

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>
Co-authored-by: pixel <chrissx@chrissx.de>
This commit is contained in:
Dina Basumatary 2022-09-25 14:18:06 +10:00 committed by GitHub
parent d7c85288c1
commit 4a23a33e40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

33
pages/common/gsutil.md Normal file
View file

@ -0,0 +1,33 @@
# gsutil
> The gsutil CLI lets you access Google Cloud Storage from the command line.
> You can use gsutil to do a wide range of bucket and object management tasks.
> More information: <https://cloud.google.com/storage/docs/gsutil>.
- List all buckets in a project you are logged into:
`gsutil ls`
- List the objects in a bucket:
`gsutil ls -r 'gs://{{bucket_name}}/{{prefix}}**'`
- Download an object from a bucket:
`gsutil cp gs://{{bucket_name}}/{{object_name}} {{path/to/save_location}}`
- Upload an object to a bucket:
`gsutil cp {{object_location}} gs://{{destination_bucket_name}}/`
- Rename or move objects in a bucket:
`gsutil mv gs://{{bucket_name}}/{{old_object_name}} gs://{{bucket_name}}/{{new_object_name}}`
- Create a new bucket in the project you are logged into:
`gsutil mb gs://{{bucket_name}}`
- Delete a bucket and remove all the objects in it:
`gsutil rm -r gs://{{bucket_name}}`