• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Windows Powershell Foreach 循环

    下面举两个例子:

    复制代码 代码如下:

    $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 循环
    上一篇:Windows Powershell ForEach-Object 循环
    下一篇:Windows Powershell Do While 循环
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Windows Powershell Foreach 循环 Windows,Powershell,Foreach,循环,