bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#4403: 23.1; find-dired: use "find -exec ls -ld {} +" or "find -ls" w


From: Glenn Morris
Subject: bug#4403: 23.1; find-dired: use "find -exec ls -ld {} +" or "find -ls" where available
Date: Mon, 14 Sep 2009 22:50:04 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

trentbuck@gmail.com wrote:

> 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

You can use something like:

(setq find-ls-option
      (let ((help (shell-command-to-string (format "%s --help" find-program))))
        (if (string-match " -ls\\>" help)
            '("-ls" . "-lids")
          (if (string-match "{} \\+" help)
              '("-exec ls -ld {} +" . "-ld")
            '("-exec ls -ld {} \\;" . "-ld")))))

The -ls version changes the output format.

> It would also mean that the output would line up better

Surely dired already takes care of the alignment?





reply via email to

[Prev in Thread] Current Thread [Next in Thread]