Public/System/Find-History.ps1

function Find-History {
    [CmdletBinding()]
    [alias("fxh")]
    [CmdLetTag()]
    param (
        [parameter(ValueFromPipeline)]
        [string]$Text
    )
    
    begin {
        
    }
    
    process {
        Get-Content (Get-PSReadlineOption).HistorySavePath|select-string $text
    }
    
    end {
        
    }
}