I am currently running this command
Get-ChildItem -recurse | Select-String -pattern ('a' OR 'b' OR 'c' OR 'd') | group path | select name | export-csv results.csv
What is the best way to modify this so that the csv next to each output includes which string it contains?
1 Answer