作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我想直接调用Powershell脚本文件,则称为Find-MyThing。如何在其中添加函数以供使用?
基本上,我想这样写一个文件:
Param(
[Parameter(ValueFromPipeline=$true)]
$ThingReference)
process{
$intermediateValue = DoSomeProcessing($ThingReference)
$finalValue = DoSomeMoreProcessing($intermediateValue)
return $finalValue
}
Function DoSomeProcessing($thing){...}
Function DoSomeMoreProcessing($thing){...}
最佳答案
找到了!
我可以将这些函数放在begin块中,然后定义它们以供以后使用!
Param(
[Parameter(ValueFromPipeline=$true)]
$ThingReference)
begin{
Function DoSomeProcessing($thing){...}
Function DoSomeMoreProcessing($thing){...}
}
process{
$intermediateValue = DoSomeProcessing($ThingReference)
$finalValue = DoSomeMoreProcessing($intermediateValue)
return $finalValue
}
关于powershell - 如何将函数放入要直接调用的Powershell脚本文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24761727/
我是一名优秀的程序员,十分优秀!