When coding we always need to find some text from multiple files. You may open them one by one and search it though VI, but I will suggest for a simpler method. Run the following command:
find /some/dir | xargs fgrep -nH 'text'Replace
/some/dir and text based on your needs :)


















Post new comment