1. 首页
  2. 数据库
  3. 其它
  4. Powershell小技巧之查找脚本中的函数

Powershell小技巧之查找脚本中的函数

上传者: 2021-01-17 01:37:48上传 PDF文件 34.45KB 热度 21次
要快速获取你PS脚本库中所有文件的函数名,你可以这样做: 代码如下: filter Find-Function { $path = $_.FullName $lastwrite = $_.LastWriteTime $text = Get-Content -Path $path if ($text.Length -gt 0) { $token = $null $errors = $null $ast = [System.Management.Automation.Language.Parser]::P
用户评论