j
k
j a
j l
On Thu, Feb 24, 2011 at 01:22:41AM -0500, Kwan Lowe wrote:
Instead of piping to xargs, try: find . -type f -mtime +15 -exec ls {} ;
Or get rid of child processes entirely:
find . -type f -mtime +15 -ls
John
Attachments:
Back to the thread
Back to the list