Cerca testo in file con Powershell
28-11-2024
Cerca in tutti i file e nelle sottodirectory un testo escludendo certe estensioni
WIN
28-11-2024
Cerca in tutti i file e nelle sottodirectory un testo escludendo certe estensioni
Modificare path e stringa da cercare
Get-ChildItem -Path "C:\GIT\" -Recurse -Exclude *.dll, *.pdb, *.exe, *.obj | Select-String "StringaDaCercare" -List | Select Path