gimpland.org

Powershell – foreach array element

In powershell you can do a foreach loop much like perl

$array = @("test1", "test2", "test3")
foreach ($value in $array) {
	$value
}
Exit mobile version