Note: as pasted in the comment, it is called backtick for the symbol ``, and there's already an answer in: What's the cmd/PowerShell equivalent of back tick on Bash?
Original question:
In bash, people may use reverse quote(``) as result for quoted commands, and integrated in another command.
For example:
cmake -DVAR1=VALUE1 `cat ../custom-options.txt`
where ../custom_options.txt
contains many lines like:
-DBUILD_ZLIB=OFF
-DBUILD_TIFF=OFF
-DBUILD_OPENJPEG=OFF
-DBUILD_JASPER=OFF
-DBUILD_JPEG=OFF
-DBUILD_PNG=OFF
-DBUILD_OPENEXR=OFF
-DBUILD_WEBP=OFF
-DBUILD_TBB=OFF
-DBUILD_IPP_IW=OFF
-DBUILD_ITT=OFF
-DWITH_AVFOUNDATION=OFF
For Windows system, it is powershell instead of bash in Linux. My question: what is the equivalent of reverse quote in PowerShell?