Board logo

标题: [原创代码] powershell全局变量的使用 [打印本页]

作者: gflrlm    时间: 2020-1-4 23:01     标题: powershell全局变量的使用

当使用 如下代码,调用 function processing_grep  操作每个文件时候,发现 变量 不能按照预期的增加,
  1. ,@(Get-ChildItem -Path $Path -Filter $Filter -Recurse | ?{$_.PsIsContainer -eq $false} |?{$_.name -match $Filtermatch} | %{processing_grep $_.FullName} )
复制代码
所以必须要修改为$global::cnt 才可以。
  1. function processing_grep(  $file ){
  2.     Write-Host "Processing :    $file "
  3.     $global:cntr=$global:cntr+1
  4.     Write-Host "Processing :    $global:cntr "
  5. $str=[string]$cntr
  6.     $tmp = "$str" + "`*file`*" + $file
  7. Write-Host "Processing :    $tmp "
  8. $tmp | out-file D:\aaa.dpl -append
  9. }
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2