主頁 > 知識(shí)庫 > Powershell小技巧之復(fù)合篩選

Powershell小技巧之復(fù)合篩選

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

當(dāng)你分析文本日志或篩選不通類型的信息時(shí),你通常要使用 Where-Object。這里有一個(gè)通用腳本來說明復(fù)合篩選:

# logical AND filter for ALL keywords 
Get-Content -Path C:\windows\WindowsUpdate.log | 
 Where-Object { $_ -like '*successfully installed*' } | 
 Where-Object { $_ -like '*framework*' } | 
 Out-GridView
 
# above example can also be written in one line 
# by using the -and operator 
# the resulting code is NOT faster, though, just harder to read 
Get-Content -Path C:\windows\WindowsUpdate.log | 
 Where-Object { ($_ -like '*successfully installed*') -and ($_ -like '*framework*') } | 
 Out-GridView
 
# logical -or (either condition is met) can only be applied in one line 
Get-Content -Path C:\windows\WindowsUpdate.log | 
 Where-Object { ($_ -like '*successfully installed*') -or ($_ -like '*framework*') } | 
 Out-GridView
您可能感興趣的文章:
  • PowerShell中使用Get-ChildItem命令讀取目錄、文件列表使用例子和小技巧
  • Powershell小技巧之使用-F方法帶入數(shù)據(jù)
  • Powershell小技巧之使用Copy-Item添加程序到開機(jī)啟動(dòng)
  • Powershell小技巧之通過EventLog查看近期電腦開機(jī)和關(guān)機(jī)時(shí)間
  • Powershell小技巧之使用Get-ChildItem得到指定擴(kuò)展名文件

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

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