Recursive Find and Replace in Multiple Files
Just had to make a few changes to a website I own that means changing the same text in lots of files. Linux has lots of powerful tools to enable you to make this kind of change over lots of files over many directories very easily. The command is: find . -type f | xargs [...]
