From: http://hi.baidu.com/lincoln_lai/blog/item/024861371795105b241f146b.html
(1)find . -name "*.c" | xargs grep "aaa"
(2)rgrep key_word *.c *.h
(3)find /root -name '*.h' -exec grep 'aaa' {} \;
From: http://hi.baidu.com/lincoln_lai/blog/item/024861371795105b241f146b.html
(1)find . -name "*.c" | xargs grep "aaa"
(2)rgrep key_word *.c *.h
(3)find /root -name '*.h' -exec grep 'aaa' {} \;