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
现在再次获取历史记录,看看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
❮ powershell_advanced_cmdlets.html