刚开始学习循环和数组。我了解如何调用数组中的单个变量,即:
$animals = gc "c:\temp\animals.txt"
foreach ($animal in $animals)
{write-host "The"$animal "sleeps tonight."}
我想弄清楚的是如何从两个不同的数组中调用两个不同的变量......即:
$animals = gc "c:\temp\animals.txt"
$colors = gc "c:\temp\colors.txt"
这是我感到困惑的部分。如何调用 foreach 循环同时循环两个文件?
期望的输出:白狮今晚睡觉,黑豹今晚睡觉,等等......