Powershell类似于'引用词'

时间:2009-11-02 21:14:53

标签: powershell

Powershell等同于Perl的qw()函数是什么?在v2中,我可以使用-split编写自己的,但我假设有一个我在文档中找不到的退出方法。

2 个答案:

答案 0 :(得分:3)

我们在PowerShell Community Extensions中包含此功能,例如:

PS> quote-list hello world
hello
world
PS> ql hello world  # using alias
hello
world

如果您不想安装PSCX,则该功能非常简单:

Set-Alias ql Quote-List
function Quote-List {$args}

答案 1 :(得分:0)

内置的Write-Output cmdlet(标准别名write)以这种方式工作,因为-InputObject参数接受所有剩余的参数。

PS> write one two three
one
two
three