Answers for "powershell find in history"

1

powershell get all history

(Get-PSReadlineOption).HistorySavePath
Posted by: Guest on October-05-2020
2

powershell find in history

Get-Content (Get-PSReadlineOption).HistorySavePath | ? { $_ -like '*foo*' }
Posted by: Guest on March-14-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language