Veröffentlicht am 15. März 20131. Juli 2013 von stefanCVS: Find all files containing a specific string within the commit message ~$: 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