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