~$: time find . -type f -name '*.php*' | grep -v /CVS/ | while read FILE_NAME; do cvs log "$FILE_NAME" | grep -i '{search string}' >/dev/null && echo "$FILE_NAME"; done | tee .output
Grep a access file and get all ips unique
~$: cat log/access.log | sed 's/ .*//' | sort -u > sorted-ips.tmp
