So splatting is very very similar to a hash group?
oBdA
It is a hash table, with the argument names as keys, and the value for the argument as value ([switch] types can be handled like bool).
The "splatting" part comes when passing it to the function/cmdlet: note the @ (instead of the $) in front of the variable name containing the hash table.
And as you can see above, you can combine splatting and regular arguments without problem.
splatting is usually easier to read/handle than line continuation with a near-invisible backtick.
Alex
ASKER
That's pretty. Very pretty. oBdA you need to let me buy you a few drinks.... :-)