- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概述
- PowerShell - 环境设置
- PowerShell - Cmdlet
- PowerShell - 文件和文件夹
- PowerShell - 日期和时间
- PowerShell - 文件 I/O
- PowerShell - 高级 Cmdlet
- PowerShell - 脚本
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 有用资源
- PowerShell - 快速指南
- PowerShell - 有用资源
- PowerShell - 讨论
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.htm
广告