1

我为文件共享生成了一个 SAS(具有读取和列表权限(没有写入权限)。我的 SAS 看起来像以下格式:“<a href="https://test.file.core.windows.net/testf1 ?[some_token_here]" rel="nofollow">https://test.file.core.windows.net/testf1?[some_token_here] 。我使用 Azcopy 通过上述 SAS 将文件下载到 Windows 虚拟机上,但 Azcopy 不是存在于 Linux 中。

如何使用上述 SAS 将文件下载到我的 linux 虚拟机上(我运行 ubuntu 14.04,但我更喜欢在大多数 linux 发行版上运行的答案)?我更喜欢使用一行代码来执行上述任务。我尝试使用 Azure-cli,但未能成功。

ps:我对 Azure 很陌生

4

1 回答 1

2

如果您使用的是最新的 Azure-Cli,您可能需要尝试:

azure storage file upload [options] [source] [share] [path]

azure storage file download [options] [share] [path] [destination]

请尝试azure storage file获取更多帮助信息。

于 2016-01-12T01:30:05.650 回答