We include this functionality in PowerShell Community Extensions , for example:
PS> quote-list hello world
hello
world
PS> ql hello world
hello
world
If you do not want to install PSCX, the function is trivial:
Set-Alias ql Quote-List
function Quote-List {$args}
source
share