Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[Bug] Errors in find completion



Hi,

While implementing completion for an alternative to find I found some
bugs in the standard completion file for find (Completion/Unix/_find)
that I was using as a reference when doing my implementation.

These were things that were incorrect on my Arch Linux system using GNU
find. They may or may not be correct for other find implementations.

1. Missing handling of -newerXY:

From the man page:

---

-newerXY reference
        Succeeds if timestamp X of the file being considered is newer
than timestamp Y of the file reference.  The letters X and Y can be any
of the following letters:

        a   The access time of the file reference
        B   The birth time of the file reference
        c   The inode status change time of reference
        m   The modification time of the file reference
        t   reference is interpreted directly as a time

        Some combinations are invalid; for example, it is invalid for X
to be t.  Some combinations are not implemented on all systems; for
example B is not supported on all systems.  If an invalid or
unsupported  combination of  XY is specified, a fatal error results.
Time specifications are interpreted as for the argument to the -d option
of GNU date.  If you try to use the birth time of a reference file, and
the birth time cannot be determined, a fatal error message results.  If
you specify a test which refers to the birth time of files being
examined, this test will fail for any files where the birth time is
unknown.

---

I suggest the following addition to find implementations that support
this option:

'*-newer'{a,B,c,m}{a,B,c,m}'[succeeds if timestamp 1 is newer than timestamp 2 of FILE]:reference file:_files' '*-newer'{a,B,c,m}t'[succeeds if timestamp 1 is newer than timestamp]:timestamp:->times'

However! I'm not sure if ->times is correct. The code for that state is
a bit cryptic to me, and I don't know if -newerXt supports quite the
same things as other time parameters.

It is also possible that you want to rewrite this to make the help text
more specific to each entry.

2. Incorrect handling of -exec, -execdir, -ok etc:

These completion entries are on the following form:
'*-exec:program: _command_names -e:*\;::program arguments: _normal'

However it is not only ; that will terminate arguments to the program in
question. + also works. The difference is that ; will only pass a single
argument per invocation while + passes as many as will fit on the
command line.

Thus a more correct line would be:
'*-exec:program: _command_names -e:*(\;|+)::program arguments: _normal'

Similar changes must also be made for -execdir, -ok and -okdir

Best regards,
Arvid Norlander




Messages sorted by: Reverse Date, Date, Thread, Author