GNU / Linux机器上有script命令,允许将所有命令行活动捕获到文件中。这是非常有用的工具,特别是当我们学习新东西并且我们想要保存命令及其输出以供将来参考时。
我目前正在Windows PowerShell终端上学习Git,我希望将所有命令及其输出捕获到一个文件中以供将来参考。
在Windows PowerShell上是否有任何方法/命令可以实现它?
答案 0 :(得分:4)
它存在标准CmdLets:Start-Transcript
和Stop-Transcript
。
您可以在associeted TechNet documentation中找到有关这些CmdLet的更多信息。
答案 1 :(得分:4)
尝试使用Start-Transcript
和Stop-Transcript
cmdlet。
您也可以使用Start-Transcript for ISE Editor module,因为这些CmdLet在ISE中无法原生使用。