windows cmd: how to pass an argument with a line break?

cmd, line-breaks

Solution

You can't do that with `cmd`. The `-m` command line option only accepts a single line.

Problem

I'm trying to have sometings like ``` cmd> svn ci -m "argument" ``` And the "argument" I want to be a multiple-line text. How can I do that?

Original source

Related problems