명령 프롬프트 창이나 스크립트에서 두 줄 이상에 명령을 입력할 수 있습니까?

명령 프롬프트 창이나 스크립트에서 두 줄 이상에 명령을 입력할 수 있습니까?

명령줄이 길어서 여러 줄에 걸쳐 입력하고 싶습니다. 다음과 같은 것(가능한 경우):

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

관련 정보