1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
cd E:\aleman\barceladaantonescu\dplus foreach($fichero in ls E:\aleman\barceladaantonescu\dplus) { $rtf = New-Object System.Windows.Forms.RichTextBox $rtf.Rtf = [System.IO.File]::ReadAllText($fichero.FullName) $rtf.Text | Out-File $fichero.FullName.replace(".rtf",".txt") $palabra = "Bye" foreach($linea in gc $fichero.FullName.replace(".rtf",".txt")) { $linea.Split(' ') | % { if($_ | Select-String $palabra.Split(',')) { Write-Host $_ '' -BackgroundColor Cyan -ForegroundColor Blue -NoNewline } else { Write-Host $_ '' -NoNewline } } Write-Host " " } } |