Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/johejo/azure-blob-uploader
- Owner: johejo
- License: mit
- Created: 2018-06-30T16:13:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T08:03:44.000Z (over 2 years ago)
- Last Synced: 2024-06-19T16:46:18.297Z (8 months ago)
- Topics: azure, azure-blob, azure-storage, cli, go, golang, uploader
- Language: Go
- Size: 19.5 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/