Help with finding and replacing a specific text line in all files in a specific folder?
So as the title says, I'm trying to find a specific text line in ALL files (cfg) in a folder and replace with another text line. Is this possible? Thanks in advance.
Solution:Jump to solution
i'm a fan of
grep -rnw . -e foo
to find all files with the text and manually changing the files with an editor to avoid oopsies3 Replies