创建了一个bash脚本以将图像批量上传到Azure,然后发生了这样的情况,使得没有上传几张图像,我也不知道哪些图像。当我运行脚本时,如果发现该Blob已经存在,则会询问我是否要覆盖它(是/否)。是否有一个标志要所有人拒绝?
for loop..
azure storage blob upload $file $storage $fileName
echo -e "$region;$cuid;$url" >> file.csv
答案 0 :(得分:2)
您可以使用yes
实用程序:
yes N | azure storage blob upload $file $storage $fileName
重复输出带有所有指定的STRING或“ y”的行。