作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
鉴于我的研究,我认为以下内容不容易完成,如果有的话。然而,作为最后的手段,我想我会检查这里。
在 Powershell 2.0 中,我想要一种将参数的(令人讨厌的)长名称减少到各种 cmdlet 的方法。我想绝对控制速记版本的外观。 (与成为 PS 使用的任何参数缩写方案的奴隶相反。)
因此,例如,我希望能够执行以下操作:
# Command goes on this first line to alias "-ForegroundColor" to "-fg"
# Command goes on this second line to alias "-BackgroundColor" to "-bg"
Wr-te-Host -fg yellow -bg black "Parameter aliases now work just like I want."
最佳答案
您可以为自己的函数创建参数别名,如下所示:
function ParamAlias {
param(
[Alias('fg','fColor')]
$ForegroundColor
)
Write-Host "$ForegroundColor" -ForegroundColor $ForegroundColor
}
ParamAlias -fg Green
ParamAlias -fColor Green
关于powershell - 较短版本的 powershell cmdlet 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7262802/
我是一名优秀的程序员,十分优秀!