heredoc for Windows batch?

Not as far as I know.

The closest I know of is

> out.txt (
    @echo.bla
    @echo.bla
    ...
)

(@ prevents the command shell itself from printing the commands it’s running, and echo. allows you to start a line with a space.)

Leave a Comment