Home » Beitrag verschlagwortet mit 'powershell'
Schlagwort-Archive: powershell
Path Variable Zeilenweise anzeigen: $env:path -split „;“
$env:path -split „;“
Find/Grep mit PowerShell ( | findstr)
Z.B.:
dir | findstr -i ubs
Regular Expressions (regexp) mit Powershell
Regular Expressions auf ein inFile.txt anwenden und das Gefundene in ein outFile.txt umleiten:
PS C:\tmp> get-content tickets.txt | Select-String '^(?=(CHF)).*$' -AllMatches >out.txt PS C:\tmp> type out.txt CHF 26.80 CHF 21.20 CHF 25.40 CHF 31.00 CHF 40.20 CHF 22.50 CHF 34.20 CHF 26.80 CHF 60.40 CHF 6.80 CHF 26.80 CHF 26.80 CHF 26.80 CHF 26.80 PS C:\tmp>
Im Beispiel werden Zeilen, die mit CHF beginnen herausgesucht.