In bash (Linux), if I have a very big command that is way large for only one line, I can use a backslash character to separate it:
./call-something.sh && \
./call-other-thing.sh
How can I do this in a BAT file (Windows)? I've tried with a backslash too and I get:
"\" is not recognized as an internal or external command, operable program or batch file.