- PowerShell功能特点
- PowerShell历史
- PowerShell和命令提示符的区别
- PowerShell与Bash Shell的区别
- PowerShell以管理员身份运行
- Windows PowerShell ISE
- PowerShell核心
- 创建并运行PowerShell脚本
- PowerShell注释
- PowerShell Cmdlet
- PowerShell基本cmdlet命令
- PowerShell Get-childItem命令
- PowerShell Get-Item命令
- PowerShell Get-Location命令
- PowerShell set-item命令
- PowerShell set-location命令
- PowerShell new-item命令
- PowerShell copy-item命令
- PowerShell move-item命令
- PowerShell remove-item命令
- PowerShell rename-item命令
- PowerShell add-content命令
- PowerShell clear-content
- PowerShell get-content命令
- PowerShell get-date命令
- PowerShell set-content命令
- PowerShell out-file命令
- PowerShell write-host命令
- PowerShell get-command命令
- PowerShell invoke-command命令
- PowerShell get-help命令
- PowerShell start-process命令
- PowerShell test-path命令
- PowerShell foreach-object命令
- PowerShell sort-object命令
- PowerShell where-object命令
- PowerShell变量
- PowerShell自动变量
- PowerShell首选项变量
- PowerShell数组
- PowerShell哈希表
- PowerShell运算符
- PowerShell算术运算符
- PowerShell赋值运算符
- PowerShell比较运算符
- PowerShell逻辑运算符
- PowerShell重定向运算符
- PowerShell拆分和合并运算符
- PowerShell if语句
- PowerShell if-else语句
- PowerShell else-if语句
- PowerShell Switch语句
- PowerShell Do-While循环
- PowerShell for循环
- PowerShell ForEach循环
- PowerShell While循环
- PowerShell Continue和Break
- PowerShell字符串
- PowerShell函数
- PowerShell Try Catch Finally
PowerShell foreach-object命令
PowerShell中的ForEach-Object
对输入对象集合中的每个项目执行语句块。 这些对象通过管道传递,或通过使用-InputObject
参数指定。
使用PowerShell 3.0的启动版,以下是两种构造ForEach-Object
命令的方法:
- 操作说明
- 脚本块
语法
语法1
ForEach-Object [-MemberName] <String> [-ArgumentList <Object[]>] [-Confirm] [-InputObject <PSObject>] [-WhatIf] [<CommonParameters>]
语法2
ForEach-Object [-Process] <ScriptBlock[]> [-Begin <ScriptBlock>] [-Confirm] [-End <ScriptBlock>] [-InputObject <PSObject>] [-RemainingScripts <ScriptBlock[]>] [-WhatIf] [<CommonParameters>]
参数
以下是ForEach-Object
cmdlet中使用的一些参数:
-MemberName - 此参数用于指定调用方法和要获取的属性。
-ArgumentList - 此参数用于指定用于调用方法的参数数组。
-Confirm - 该参数在执行cmdlet之前提示进行确认。
-InputObject - 此参数用于指定输入对象。该cmdlet在每个输入对象上执行脚本块或操作语句。当在ForEach-Object
中使用此参数时,此参数的值将被视为单个对象。
-WhatIf - 此参数用于显示如果执行cmdlet将会发生的情况。该cmdlet将不会执行。
-Process - 此参数用于指定在每个输入对象上执行的操作。输入描述操作的脚本块。
-Begin - 此参数用于指定脚本块,该脚本块在cmdlet处理任何输入对象之前执行。
-End - 此参数用于指定脚本块,该脚本块在cmdlet处理所有输入对象之后执行。
-RemainingScripts - 此参数用于指定所有那些脚本块,-Process
参数不使用这些脚本块。
示例
示例:访问E:
盘文件和文件夹
PS E:\xntutor.com\powershell> get-childitem -Path 'E:' | foreach-object {write-host $_} Program Files Program Files (x86) SnapPlugin softwares vhosts wamp64 WeChat worksp workspace xntutor.com xunleiDownloads XY 迅雷下载 hosts - 快捷方式.lnk HwMonitor.rp 服务器安装帐号.xlsx
在此示例中,我们使用管道符号(|
),该符号用于将get-childitem
的输出传递给ForEach-Object
命令。 最后使用write-host
命令显示传递的值。
在命令中,$_
是一个特殊变量,它处理通过管道传递的值。
扫描二维码
程序员编程王