Google Cloud 스토리지 접근.
gsutil
을 사용하여 광범위한 버킷 및 객체 관리 작업을 수행 가능. 더 많은 정보: https://cloud.google.com/storage/docs/gsutil.
gsutil ls
gsutil ls -r 'gs://{{버킷_이름}}/{{prefix}}**'
gsutil cp gs://{{버킷_이름}}/{{객체_이름}} {{path/to/save_location}}
gsutil cp {{object_location}} gs://{{목적지_버킷_이름}}/
gsutil mv gs://{{버킷_이름}}/{{오래된_객체_이름}} gs://{{버킷_이름}}/{{새로운_객체_이름}}
gsutil mb gs://{{버킷_이름}}
gsutil rm -r gs://{{버킷_이름}}