Q. I had written lots of code in C for my school work and saved it as source code under /home/user/c/*.c and *.h. How do I find files by content such as string or words (function name such as main() under UNIX shell prompt?
A. You need to use following tools:
[a] grep command : print lines matching a pattern.
[b] find command: search for files in a directory hierarchy.
grep command to find files by content
Type the command as follows:
grep 'string' *.txt grep 'main(' *.c grep '#include<example.h>' *.c grep 'getChar*' *.c grep -i 'ultra' *.conf grep -iR 'ultra' *.conf
Where
- -i : Ignore case distinctions in both the PATTERN (match valid, VALID, ValID string) and the input files (math file.c FILE.c FILE.C filename).
- -R : Read all files under each directory, recursively
Highlighting searched patterns
You can highlight patterns easily while searching large number of files:
$ grep --color=auto -iR 'getChar();' *.c
Displaying file names and line number for searched patterns
You may also need to display filenames and numbers:
$ grep --color=auto -iRnH 'getChar();' *.c
Where,
- -n : Prefix each line of output with the 1-based line number within its input file.
- -H Print the file name for each match. This is the default when there is more than one file to search.
$grep --color=auto -nH 'DIR' *
Sample output:
You can also use find command:
$ find . -name "*.c" -print | xargs grep "main("



{ 10 comments… read them below or add one }
Thanks for the good tip,
But what a bout PDF files? you mentioned only text type of files which grep can work with them, I need to know the trick for the PDF files :/
Hi and tanks for all your tips!
I also find useful invoking grep with -nH, so that it also shows the file and the line that contains the pattern.
Sometimes, -E or -P options come handy too, because they allow me to search for regexp.
Have a lot of fun…
“ack” is a really better alternative to grep. It is especially useful for programmers because it skips temporary files and version control files by default and searches only on code files. It searches recursively by default. check it out.
@mhernandez,
Thanks for your post, I’ve update FAQ.
@Gokdeniz,
I will check it out ack and will update faq with it.
@mhymn,
Try offical pdf tool as follows:
acroread /a search='word' *.pdfAppreciate all of your posts.
egrep -ri word location/folder/*
Hello,
i was trying to use the find or grep commands to search for the cp command in the ./bin directory but i couldn’t get it. could you teach me how to get it. i know it’s there. just want to try out the find and the grep commands.
@henry
find ./bin -name “cp”
If you were trying to find where cp program lies, you can use
which cp
find . -type f -name “*.c” -print \
-exec grep -s “main(” {}\;
This command should also work
when you want to copy all the files which contains the specified function name.,
find -iname “*.c” -exec grep -l ‘main(’ {} \; -a -exec cp {} test1/ \;
If you want to get a list o file where the string match the you must use -l option: grep -l ‘main(’ *.c