1. 首页
  2. 数据库
  3. 其它
  4. Windows Powershell Foreach 循环

Windows Powershell Foreach 循环

上传者: 2021-01-16 16:53:07上传 PDF文件 21.66KB 热度 24次
下面举两个例子: 代码如下: $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:\W
用户评论