如何干净地格式化批处理文件中的多个 if 语句?

如何干净地格式化批处理文件中的多个 if 语句?

该脚本有效:

IF EXIST %PublishRoot%\ConnectionStrings.json IF EXIST %PublishRoot%\Settings.json IF EXIST %PublishRoot%\Web.config (
    call DeployInit %1
    exit /b
)

但它不可读。我试过:

IF EXIST %PublishRoot%\ConnectionStrings.json 
IF EXIST %PublishRoot%\Settings.json 
IF EXIST %PublishRoot%\Web.config (
    call DeployInit %1
    exit /b
)

但它不起作用:

该命令的语法不正确。

我怎样才能使它更具可读性?

答案1

用于^在 Cmd 批处理文件中连接多行:

if this ^
if that ^
do_something

相关内容