Vim
-
Vim :: Search and replace across multiple files
From within Vim, you can search all files for a string/pattern with the following ex command. Replace “string_to_find” with your search string. The path given as example is every file under the app directory recursively. :vimgrep /string_to_find/ ./app/**/* That command will put all occurances of the string into your quickfix list. You can then run…