Vediamo come estrarre, in PowerShell, solo alcune righe da un file di testo (ad esempio un log).
L'esempio seguente estrae tutte le righe che hanno l'ora uguale a 19:25 e le scrive su un altro file (filteredLog.txt)

PowerShell

Get-Content .\ex071112.log | Where-Object {$_.ToString() -match "19:25"} | Set-Content filteredLog.txt
Tags:
PowerShell200 Script85
Potrebbe interessarti anche: