如果我按Powershell中的向上箭头,则会显示最后一条命令。其他程序会删除此“历史记录”,但似乎powershell不会。我想知道如何删除此数据(重启不起作用)。
您可以通过按Alt + F7清除此历史记录。这是最简单的方法,无需命令。
编辑:感谢Midacts为此指出了命令:
[Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()
有关更多信息,您可能想看一下这篇文章:PowerShell's Clear-History doesn't clear history
使用命令Clear-History
“从PowerShell会话中删除命令历史记录。”
PowerShell's Clear-History doesn't clear history
“ [Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()
可用于清除当前会话的历史记录”