我想从 cmd.exe 复制/粘贴一些
PowerShellWrite-Output "first line"
命令Write-Output "second line"
最基本的方法是:
powershell -NoProfile -Command "Write-Output 'first line'";
powershell -NoProfile -Command "Write-Output 'second line'";
运行完美,但每个命令都会启动一次 PowerShell。
一个很好的改进是:
powershell -NoProfile -Command "Write-Output 'first line'; Write-Output 'second line'"
但是一些漂亮的格式怎么样?
powershell -NoProfile -Command "
Write-Output 'first line';
Write-Output 'second line';
"
我尝试了 `(PowerShell 行继续符)和 ^(cmd.exe 行继续符)的几种组合,但没有成功。
有人有想法吗?