标题: [原创代码] powershell全局变量的使用 [打印本页]
作者: gflrlm 时间: 2020-1-4 23:01 标题: powershell全局变量的使用
当使用 如下代码,调用 function processing_grep 操作每个文件时候,发现 变量 不能按照预期的增加,- ,@(Get-ChildItem -Path $Path -Filter $Filter -Recurse | ?{$_.PsIsContainer -eq $false} |?{$_.name -match $Filtermatch} | %{processing_grep $_.FullName} )
复制代码
所以必须要修改为$global::cnt 才可以。- function processing_grep( $file ){
- Write-Host "Processing : $file "
- $global:cntr=$global:cntr+1
- Write-Host "Processing : $global:cntr "
- $str=[string]$cntr
- $tmp = "$str" + "`*file`*" + $file
- Write-Host "Processing : $tmp "
- $tmp | out-file D:\aaa.dpl -append
-
- }
-
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |