On Fri, 17 Apr 2015 16:57:49 -0400, Tanstaafl wrote: > So, from the target users top level Maildir: > > grep -lr * | xargs ls -lt > > ^^^ appears to work, and does return results for the cur and new > subdirs, but seems to be ignoring the rest of the Maildirs. Maybe it has > something to do with the fact that they start with dots (ie, .Sent, > .Trash, etc)?? > > Anyone have any idea why the above doesn't search them all? The shell expands * to the contents of the current directory, excluding hidden files. It's not grep's doing it is the shell expansion that is catching you out. Since you want to search the entire contents f the current directory, there is no need to pass grep a list of directories (especially not an incomplete list), use "grep -lr ." -- Neil Bothwick Bug: (n.) any program feature not yet described to the marketing department.