Powershell - Add-History Cmdlet
Cmdlet
Add-History cmdlet 用于在当前历史记录中添加命令。
在这些示例中,我们将看到 Add-History cmdlet 的运行情况。
例
在此示例中,我们将再次将前五个历史命令添加到当前历史记录中。
> get-history
Id CommandLine
-- -----------
13 clear-history
14 get-history
15 dir
16 dir
17 dir
18 dir
> Get-history -count 5 | Add-history
现在再次获取历史记录以查看添加历史记录的效果。
> Get-history
Id CommandLine
-- -----------
13 clear-history
14 get-history
15 dir
16 dir
17 dir
18 dir
19 get-history
20 get-history -count 5 | Add-history
21 dir
22 dir
23 dir
24 get-history
25 get-history -count 5 | Add-history