Salto de línea en el conjunto /p

Salto de línea en el conjunto /p

En uno de mis scripts por lotes, quiero que el usuario pueda ingresar texto. Luego, el texto se escribirá en un archivo .txt:

    @echo Enter an archive comment here (English letters and numbers only):
    set /p textfileContents= 
::  Outputs the user input to the text file
    @echo %textfileContents% > %textfileName%.txt

Esto funciona bien excepto que estoy limitado a una sola línea de texto, porque al presionar Enterse ejecutará el comando en lugar de hacer un salto de línea.

¿Cómo puedo obtener un salto de línea en lugar de ejecutar el comando?

Respuesta1

Intentar

copy con %textfileName%.txt

Al final de escribir su tipo de texto de varias líneasCTRL+ZoCTRL+C

información relacionada