I looked into doing this for one file and I really like the solution powershell offers:
Get-Content test.txt | ForEach-Object { $_ -replace "foo", "bar" } | Set-Content test2.txt
Is there a way I can do this to get the content of a list of files, perform the same search and replace, and produce a second set of files?
This accomplishes what I want: