I have a function that looks something like this:
function global:Test-Multi { Param([string]$Suite) & perl -S "$Suite\runall.pl" -procs:$env:NUMBER_OF_PROCESSORS }
I would like to allow the user to specify more parameters for Test-Multi and pass them directly to the underlying perl script legacy.
Does powershell provide a mechanism to provide additional variation behavior for this purpose?
source share