[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[转载教程] 【探索PowerShell 】【十】循环语句

【探索PowerShell 】【一】初识http://www.bathome.net/thread-26144-1-1.html
【探索PowerShell 】【二】基本操作http://www.bathome.net/thread-26148-1-1.html
【探索PowerShell 】【三】PowerShell下使用Aliaseshttp://www.bathome.net/thread-26149-1-1.html
【探索PowerShell 】【四】PowerShell的对象、格式与参数http://www.bathome.net/thread-26159-1-1.html
【探索PowerShell 】【五】PowerShell基础知识http://www.bathome.net/thread-26162-1-1.html
【探索PowerShell 】【六】脚本基础简要http://www.bathome.net/thread-26163-1-1.html
【探索PowerShell 】【七】变量http://www.bathome.net/thread-26165-1-1.html
【探索PowerShell 】【八】数组、哈希表(附:复制粘贴技巧)http://www.bathome.net/thread-26166-1-1.html
【探索PowerShell 】【九】条件控制、逻辑http://www.bathome.net/thread-26167-1-1.html
【探索PowerShell 】【十】循环语句http://www.bathome.net/thread-26168-1-1.html
【探索PowerShell 】【十一】函数http://www.bathome.net/thread-26174-1-1.html
【探索PowerShell 】【十二】筛选器 - Filtershttp://www.bathome.net/thread-26187-1-1.html
【探索PowerShell 】【十三】WMI对象http://www.bathome.net/thread-26188-1-1.html
【探索PowerShell 】【十四】使用WMI对象的方法http://www.bathome.net/thread-26189-1-1.html
【探索PowerShell 】【十五】引号与转义字符http://www.bathome.net/thread-26190-1-1.html

PowerShell作为可编程性语言,拥有以下循环语句。

注:本节所要讨论的内容的实质更多的偏向于程序设计方面,所以在此不做过多详细讲解,只针对PowerShell中的应用进行具体讲解。

    • for (初值;表达式;赋值语句) {代码}          用变量值控制执行次数
    • foreach (成员变量 in 数组) {代码}         利用迭代执行代码
    • foreach-object                                       对一组输入的每个对象执行运算
    • while(表达式) {代码}                              表达式为真时循环执行代码
    • do {代码}  while(表达式)                         类似于while,只是先执行代码,再判断表达式真假
    • do {代码}  until(表达式)                            执行代码,直至表达式为假

循环语句在PowerShell中的应用

利用foreach查询硬件信息

例一:
  1. $DiskDrive=get-wmiobject -class Win32_DiskDrive -namespace root\CIMV2
  2. foreach ($item in $DiskDrive)
  3. {
  4. write-host "Description:" $item.Description
  5. write-host "Device ID:" $item.DeviceID
  6. write-host "Interface Type:" $item.InterfaceType
  7. write-host "Media Type:" $item.MediaType
  8. write-host "Model:" $item.Model
  9. write-host "Partitions:" $item.Partitions
  10. write-host "Size:" $item.Size
  11. write-host "Status:" $item.Status
  12. }
复制代码
例二:
  1. $Processor=get-wmiobject -class Win32_Processor -namespace root\CIMV2
  2. foreach ($item in $Processor)
  3. {
  4. write-host "Caption:" $item.Caption
  5. write-host "CPU Status:" $item.CpuStatus
  6. write-host "Current Clock Speed:" $item.CurrentClockSpeed
  7. write-host "Device ID:" $item.DeviceID
  8. write-host "L2 Cache Size:" $item.L2CacheSize
  9. write-host "L2 Cache Speed:" $item.L2CacheSpeed
  10. write-host "Name:" $item.Name
  11. }
复制代码
使用while监视进程状态
  1. notepad
  2. While(get-process -name notepad | select -Property Responding){}
  3. $time = get-date
  4. Write-Host "The Notepad failed to respond on:$time"
复制代码
在此例下,若进程notepad出现未响应,则会产生屏幕输出。

使用do while表达:
  1. notepad
  2. do{}
  3. While(get-process -name notepad | select -Property Responding)
  4. $time = get-date
  5. Write-Host "The Notepad failed to respond on:$time"
复制代码
利用do until进行交互
  1. do
  2. {
  3.     "Quit Now? (Y/N)"
  4.     $input=Read-Host
  5. }
  6. until($input -eq "Y")
复制代码
使用foreach-object进行格式化输出

对下列数据进行操作,

D00454798106276487326471李德建829.51
Q00136284503715856294375张春生712.65
H00374967692981018226574刘锡明891.31
R00759861215965098103878赵子龙898.21
J00741245626115645970139杨高远-13.21
K00142545764587219409172周明647.41
P00103851828756182786938张龙-27.51

使之输出为以下所示格式:

1|454798106276487326471|李德建|829.51
2|136284503715856294375|张春生|712.65
3|374967692981018226574|刘锡明|891.31
4|759861215965098103878|赵子龙|898.21
5|741245626115645970139|杨高远|0.00
6|142545764587219409172|周明|647.41
7|103851828756182786938|张龙|0.00
        小计            |3979.09

使用foreach-object对每个数据成员使用正则表达式,最后格式化输出即可:
  1. ${C:\test.txt} | `
  2. foreach-object{$total=0;$id=1}`
  3. {
  4.     [void]($_ -match '^.{3}(?<id>\d+)(?<name>[\p{IsCJKUnifiedIdeographs}]+)(?<salary>[\d.]*)');
  5.     $ofs = '|';
  6.     "$($id;$id++;$matches.id;$matches.name;'{0:f2}' -f [float]$matches.salary)";
  7.     $total += $matches.salary
  8. }`
  9. {"`t小计`t`t|$total"}
复制代码
欢迎提出意见建议!

本文出自 “马睿的技术博客” 博客,请务必保留此出处http://marui.blog.51cto.com/1034148/294113

PowerShell要火~~~这下有资料了昂
活着就是为了改变世界

TOP

返回列表