Skip to content

Instantly share code, notes, and snippets.

@sofferm
Created May 21, 2025 13:09
Show Gist options
  • Select an option

  • Save sofferm/275d2e15048876f2886742de09980f95 to your computer and use it in GitHub Desktop.

Select an option

Save sofferm/275d2e15048876f2886742de09980f95 to your computer and use it in GitHub Desktop.
Finde einen Text in einem Haufen Logdateien
# finde Text in einem Haufen Logdateien
$suchstring = "java.lang.NullPointerException: null"
$suchstring = "Während der Verarbeitung kam es zu einem unerwarteten Serverfehler"
$suchstring = "Hier könnte ihr Suchstring stehen"
cd $PSScriptRoot
foreach ($f in Get-ChildItem -Filter "*.log")
{
Select-String -path "$f" -SimpleMatch "$suchstring" #-Context 0,1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment