Created on 2010-Jan-25
Updated on 2010-Jan-25
To search for a text pattern in files in linux, do the following:
find / -type f -print0 | xargs -0 grep -i 'your pattern'
A web and systems development journal (from a–too busy–web developer who does a lot of various IT work.)
To search for a text pattern in files in linux, do the following:
find / -type f -print0 | xargs -0 grep -i 'your pattern'