https://github.com/pottava/gcs-utils
File uploader/downloader for Google Cloud Storage
https://github.com/pottava/gcs-utils
downloader gcs uploader
Last synced: over 1 year ago
JSON representation
File uploader/downloader for Google Cloud Storage
- Host: GitHub
- URL: https://github.com/pottava/gcs-utils
- Owner: pottava
- Created: 2020-05-29T10:20:07.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-31T17:38:14.000Z (about 6 years ago)
- Last Synced: 2023-03-25T19:19:49.712Z (over 3 years ago)
- Topics: downloader, gcs, uploader
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GSC Utils
## Usage
### Uploader
```bash
$ gcs-upload --help
$ gcs-upload --bucket bucket --input input.csv --object object
```
### Downloader
```bash
$ gcs-download --help
$ gcs-download --bucket bucket --object object --output output.csv
```
## Installation
### Linux
```bash
$ curl -Ls https://github.com/pottava/gcs-utils/releases/download/upload-v0.5.0/gcs-upload-linux \
-o gcs-upload && chmod +x gcs-upload
$ curl -Ls https://github.com/pottava/gcs-utils/releases/download/download-v0.5.0/gcs-download-linux \
-o gcs-download && chmod +x gcs-download
```
### Max
```bash
$ curl -Ls https://github.com/pottava/gcs-utils/releases/download/upload-v0.5.0/gcs-upload-mac \
-o gcs-upload && chmod +x gcs-upload
$ curl -Ls https://github.com/pottava/gcs-utils/releases/download/download-v0.5.0/gcs-download-mac \
-o gcs-download && chmod +x gcs-download
```
### Windows
```bash
$
```