find . -type f | xargs grep string And bum… After a while the command failed with the error: “xargs: unmatched single quote”. This happened because one of the files returned by the find command had a quote character inside its file name. xargs was not able to distinguish between the...