I've found some execution command from Unreal Build Tool:
C:\VisualStudio\IDE2017\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64\cl.exe @"C:\MessageTag\Intermediate\Build\Win64\MessageTest\Development\DesktopPlatform\Module.DesktopPlatform.cpp.obj.response" /showIncludes
I tested a simple command line
cl @"F:\x\cc.txt"
with file content of cc.txt:
x.cpp
-Fe"y.exe"
The y.exe is created, and it seems that lines in the file "cc.txt" are chained into a string.
However if I simply type this:
@"F:\x\cc.txt"
in the command line, the text file is opened, neither showing file content nor execute the first line of the file content.
What does the "@" exactly do? Is there a documentation for it?
further question: This only works on cmd. Is there a Powerhsell equivalent?