`

function k9s-list {
    # 获取所有 k9s 开头的函数
    Get-ChildItem Function: | Where-Object {$_.Name -like "k9s-*"} | Sort-Object Name
}