Azure command line tool for Linux machine to upload / download data to / from Azure Storage

I am looking for the azure command line tool in linux. I found azure-cli but did not support the upload and download function in azure storage (according to my knowledge).

I found some CLI tools, but they only work on windows. this is

  • Azcopy
  • cloudcopy

So can anyone suggest one of the best azure CLI tools that can run on a Linux machine and are capable of performing download and download operations?

It would be great if it supported partial reading and partial writing.

+7
linux azure azure-storage-blobs
source share
4 answers

Support download and upload:

azure storage blob upload [options] [file] [container] [blob] azure storage blob download [options] [container] [blob] [destination] 

If they do not see that they are first trying to update your cli tools:

 npm install azure-cli -g 

(Node.js must be installed on your system)

Hope this helps

+8
source share

A bit late for this question, but hopefully this will help anyone looking for an answer. The Azure Batch and HPC team released a sample code with some AzCopy function in Python called blobxfer . [full disclosure: I am the author of this code]

+7
source share

if the above didn't help, you can also install the latest version with elevated privileges like this sudo npm instal azure-cli -g

+1
source share

Azure CLI 2.0, which is a python-based version that supports ARM-based deployments, can be used to load blob memory contents one at a time. Here is a step-by-step guide for the same - http://sanganakauthority.blogspot.in/2017/03/how-to-download-azure-blob-storage.html

However, you cannot load all drops from the container at a time. Today, Kli does not support him.

+1
source share

All Articles