An open API service indexing awesome lists of open source software.

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

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
$
```