--- Begin Message ---
Subject: |
23.1; find-dired: use "find -exec ls -ld {} +" or "find -ls" where available |
Date: |
Fri, 11 Sep 2009 02:09:45 -0700 (PDT) |
Recent versions of GNU find support the expressions
find <query> -exec ls -ld {} +
and
find <query> -ls
I believe these are also part of recent versions of the POSIX spec.
It would be great if M-x find dired RET automatically used these forms
instead of the less efficient
find <query> -exec ls -ld {} \;
that it currently uses. It would also mean that the output would line
up better, since
ls foo bar baz
will try to align the three lines, whereas
ls foo ; ls bar ; ls baz
won't.
--- End Message ---
--- Begin Message ---
Subject: |
Re: bug#4403: 23.1; find-dired: use "find -exec ls -ld {} +" or "find -ls" where available |
Date: |
Sat, 02 Apr 2011 16:37:30 -0400 |
User-agent: |
Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) |
Version: 24.1
find-dired now uses `find -ls' or `find -exec +' where available.
--- End Message ---