下面举两个例子:
复制代码 代码如下:
$array=7..10
foreach ($n in $array)
{
$n*$n
}
#49
#64
#81
#100
foreach($file in dir c:\windows)
{
if($file.Length -gt 1mb)
{
$File.Name
}
}
#explorer.exe
#WindowsUpdate.log
这里只为了演示foreach,其实上面的第二个例子可以用Foreach-Object更简洁。
复制代码 代码如下:
PS C:\powershell> dir C:\Windows | where {$_.length -gt 1mb} |foreach-object {$_.Name}
explorer.exe
WindowsUpdate.log
您可能感兴趣的文章:
- Windows Powershell IF-ELSEIF-ELSE 语句
- Windows Powershell Switch 语句
- Windows Powershell ForEach-Object 循环
- Windows Powershell Do While 循环
- Windows Powershell For 循环
- Windows Powershell Switch 循环
声明:本站(华域联盟www.cnhackhy.com)所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

评论(0)