mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
9 lines
269 B
PowerShell
9 lines
269 B
PowerShell
$PSHistPath = (Get-PSReadlineOption).HistorySavePath
|
|
|
|
if (Test-Path $PSHistPath) {
|
|
$PSHist = Get-Content $PSHistPath
|
|
$PSHist | Group-Object | Sort-Object Count -Descending | Select-Object -First 10 Count, Name
|
|
}
|
|
else {
|
|
Write-Host "No history file found."
|
|
}
|