在脚本中使用 azcopy on Linux 时如何避免提示?
How do I avoid the prompts while using azcopy on Linux in a script?
我有一个 Python 脚本可以运行 AzCopy 命令来备份我的存储帐户。但是,它会不断提示并显示以下消息。
Incomplete operation with different command line detected at the journal directory "/home/azureuser/Microsoft/Azure/AzCopy".
Do you want to overwrite the journal to start a new operation? Choose Yes to overwrite, choose No to cancel current operation. (Yes/No) y
在 Windows 版本的 AzCopy 上,我可以添加 /Y
参数。但我在 Linux 机器上。
是否有 Linux 的等效参数?
请使用 --quiet
选项尝试 azcopy
。
如果您键入 azcopy --help
,您将看到此选项以及以下说明:
--quiet Suppresses all AzCopy confirmation prompts.
如果使用azcopy sync
,你必须要狡猾:
echo N | azcopy sync ... --force=false
我有一个 Python 脚本可以运行 AzCopy 命令来备份我的存储帐户。但是,它会不断提示并显示以下消息。
Incomplete operation with different command line detected at the journal directory "/home/azureuser/Microsoft/Azure/AzCopy". Do you want to overwrite the journal to start a new operation? Choose Yes to overwrite, choose No to cancel current operation. (Yes/No) y
在 Windows 版本的 AzCopy 上,我可以添加 /Y
参数。但我在 Linux 机器上。
是否有 Linux 的等效参数?
请使用 --quiet
选项尝试 azcopy
。
如果您键入 azcopy --help
,您将看到此选项以及以下说明:
--quiet Suppresses all AzCopy confirmation prompts.
如果使用azcopy sync
,你必须要狡猾:
echo N | azcopy sync ... --force=false