Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/johejo/azure-blob-uploader

A small CLI tool written in golang for uploading files to Microsoft Azure Blob Storage
https://github.com/johejo/azure-blob-uploader

azure azure-blob azure-storage cli go golang uploader

Last synced: about 1 month ago
JSON representation

A small CLI tool written in golang for uploading files to Microsoft Azure Blob Storage

Awesome Lists containing this project

README

        

# azure-blob-uploader
[![Travis CI](https://travis-ci.org/johejo/azure-blob-uploader.svg?branch=master)](https://travis-ci.org/johejo/azure-blob-uploader)
[![Appveyor](https://ci.appveyor.com/api/projects/status/xbl1prn96p9kltfc/branch/master?svg=true
)](https://ci.appveyor.com/project/johejo/azure-blob-uploader)
[![CircleCI](https://circleci.com/gh/johejo/azure-blob-uploader.svg?style=svg)](https://circleci.com/gh/johejo/azure-blob-uploader)

A small CLI tool written in golang for uploading files to Microsoft Azure Blob Storage

## Feature

### Single binary
It does not depend on other components such as openssl and python like azure-cli.

## Install

### Pre-built binary

[release page](https://github.com/johejo/azure-blob-uploader/releases)

## Usage
```
$ azure-blob-uploader -accout-name -account-key -c -f
```

### Build from source

```
$ git clone https://github.com/johejo/azure-blob-uploader.git
$ cd azure-blob-uploader/
$ go install
```

## Motivation
I was ordered to upload files from a very old machine to Azure Blob Storage at a certain legacy project.
It was impossible to install azure-cli on that machine.
As a result I found an article by Toru Makabe and made an upload tool.
Because there may be people who are in trouble with other similar things, leave my deliverables here.

## Great appreciation
Toru Makabe http://torumakabe.github.io/post/azblob_golang/