powershell 从git编辑PowerShell中的文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 从git编辑PowerShell中的文件相关的知识,希望对你有一定的参考价值。

function Open-FileWithFunctionInSublime {
    param([string]$FunctionName)

    $filesInMainRepo =  (git -C d:\dev\eCargo grep -ni "function invoke-sql" | % { $_ -match '([^\:]*\:[0-9]*)\:' | out-null ; $Matches[1] })
    $filesInToolsRepo = (git -C d:\dev\Tools grep -ni "function invoke-sql" | % { $_ -match '([^\:]*\:[0-9]*)\:' | out-null ; $Matches[1] })

    ($filesInMainRepo + $filesInToolsRepo) | % { subl $_ }
}

以上是关于powershell 从git编辑PowerShell中的文件的主要内容,如果未能解决你的问题,请参考以下文章

powershell 来自https://stackoverflow.com/questions/31051103/how-to-export-a-class-in-powershell-v5-mod

PowerShe 使用证书签名 ll脚本

使用Powershell管理Linux 下的 SQL Server

通过 PHP 使用 Exchange 管理单元执行 powershell 脚本

哪些方法可以绕过PowerShell Execution Policy?

使用以下逻辑编写 Powershell 脚本的指南 [关闭]