【发布时间】:2019-12-15 05:14:55
【问题描述】:
我们使用 Azure CLI 编写脚本来删除存储帐户容器的内容并将目录的内容上传到容器
az storage blob delete-batch --account-name $ACCOUNT_NAME --source $web
az storage blob upload-batch --account-name $ACCOUNT_NAME -s $SOURCE_PATH -d $web
现在,我们想在 Azure 上托管脚本。根据我们的搜索,我们不能直接在 Azure 上托管 Azure CLI 脚本,我们必须将脚本迁移到 powershell。但是我们找不到类似的 powershell 命令。有人可以帮助我吗?
【问题讨论】:
标签: azure powershell