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