/* Author: CodeGrabber Date: 09-04-2008 Filename: Description: find and replace text from the shell History: */ find . -name '*.txt' -print0 |xargs -0 perl -pi -e 's/find/replace/g'