findit() { find . -name \* -exec grep -iH $1 {} \; }
findit() { grep -iHR $1 . }
find -exec grep -iH ${1?} {} +