I'm trying to figure out if there is a way to pass arguments to a next line script from PowerShell array.
Ex:
$array = @('a','b','c') # This can keep increasing.
cobertura-merge -o coverage/cobertura-coverage.xml $array[0] $array[1] $array[2]
Can someone please let me know, how to accomplish this if there are n
no.of elements in the array?
Raag!