我有一个很长的命令行,我想将其分成几行输入。如下所示(如果可能的话):
vsdbcmd /a:Deploy /manifest:Database.deploymanifest _
/p:DeploymentConfigurationFile=Database_Database.sqldeployment _
/p:SqlCommandVariablesFile=Database_Database.sqlcmdvars _
/p:TargetDatabase=Database _
/dd- /cs:"Data Source=production;integrated security=true" _
/script:DatabaseChanges.sql /dsp:SQL > errors.log 2>&1
是否存在一个字符或字符序列可用于在多行上写命令行?
答案1
尝试使用“^”作为续行符。例如:
echo foo ^
bar ^
baz
结果是:
foo bar baz