PowerShell函数中接收管道参数实例
程序员文章站
2022-05-31 11:40:14
本文介绍在自定义powershell函数时,如何设置函数通过管道(pipeline)接收输入参数。
先看一个例子,用管道作为输入参数的函数:
复制代码 代码如下:
f...
本文介绍在自定义powershell函数时,如何设置函数通过管道(pipeline)接收输入参数。
先看一个例子,用管道作为输入参数的函数:
复制代码 代码如下:
function test-pipeline {
param(
[parameter(valuefrompipeline=$true)]
$inputobject
)
process
{
“working with $inputobject”
}
}
使用管道作为输入参数,函数的执行情况如下:
复制代码 代码如下:
ps> 1..4 | test-pipeline
working with 1
working with 2
working with 3
working with 4
在test-pipeline函数中,inputobject是一个接收管道输入的参数。inputobject参数之前,我们用了[parameter(valuefrompipeline=$true)]这个条指令,从指令的名称来看,我们就发现了valuefrompipeline,表示从管道获取值。
另外,小编要说的是,在powershell所有的系统自带函数中,从管道获取值的参数名称都叫inputobject,我们在开发的过程中应该继承并发扬这一风格。
关于powershell函数通过管道接收参数,本文就介绍这么多,希望对您有所帮助,谢谢!