Powershell中的$ ^和$$变量是什么?

时间:2016-07-28 07:16:50

标签: powershell

Windows PowerShell Language Specification Version 3.0说,

  

变量$$和$ ^保留用于交互式环境,这超出了本规范的范围。

但我在谷歌上找不到任何信息。 它们适用于什么? 我在哪里可以找到信息?

1 个答案:

答案 0 :(得分:2)

这些是automatic variables。根据文档,

$$
   Contains the last token in the last line received by the session.
$^
   Contains the first token in the last line received by the session.