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