11.3 从指定类型文件中查找

1 find . -name ‘*.c’ | awk ‘{print “grep -i -nH keyword “$1}’ | /bin/bash

2 find . -name ‘*.c’ -exec grep -i -nH “keyword” {} ;