主頁 > 知識庫 > Windows Powershell Foreach 循環(huán)

Windows Powershell Foreach 循環(huán)

熱門標(biāo)簽:如何根據(jù)經(jīng)緯度百度地圖標(biāo)注 六寸地圖標(biāo)注點(diǎn)怎么刪除 電話機(jī)器人公司招聘 騰訊地圖標(biāo)注中心怎么標(biāo)注 印臺區(qū)呼叫中心外呼系統(tǒng) 地圖標(biāo)注的圖案 新鄭電銷機(jī)器人一個(gè)月多少錢 萬全縣地圖標(biāo)注app 莫拉克電梯系統(tǒng)外呼怎么設(shè)置

下面舉兩個(gè)例子:

復(fù)制代碼 代碼如下:

$array=7..10
foreach ($n in $array)
{
    $n*$n
}
 
#49
#64
#81
#100
 
foreach($file in dir c:\windows)
{
    if($file.Length -gt 1mb)
    {
        $File.Name
    }
}
 
#explorer.exe
#WindowsUpdate.log

這里只為了演示foreach,其實(shí)上面的第二個(gè)例子可以用Foreach-Object更簡潔。

復(fù)制代碼 代碼如下:

PS C:\Powershell> dir C:\Windows | where {$_.length -gt 1mb} |foreach-object {$_.Name}
explorer.exe
WindowsUpdate.log

您可能感興趣的文章:
  • Windows Powershell IF-ELSEIF-ELSE 語句
  • Windows Powershell Switch 語句
  • Windows Powershell ForEach-Object 循環(huán)
  • Windows Powershell Do While 循環(huán)
  • Windows Powershell For 循環(huán)
  • Windows Powershell Switch 循環(huán)

標(biāo)簽:襄陽 喀什 湘潭 汕頭 南昌 疫苗接種 天水 臨汾

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Windows Powershell Foreach 循環(huán)》,本文關(guān)鍵詞  Windows,Powershell,Foreach,循環(huán),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Windows Powershell Foreach 循環(huán)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Windows Powershell Foreach 循環(huán)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章