On Fri, Jul 25, 2008 at 11:31:10AM -0700, John Oliver wrote:
find /home/ftp -mtime +238 -name \*.mpg | xargs ls -lt
If you're using the GNU versions, it's easiest to just use null termination. find /home/ftp -mtime +238 -name \*.mpg -print0 | xargs -0 ls -lt David -- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
