Re: man find: unify symlink / symbolic link

2019-11-12 Thread Bernhard Voelker
On 2019-11-13 00:29, 積丹尼 Dan Jacobson wrote: > Bernhard Voelker writes: >> WDYT? > Great. Thanks for the review. Pushed at: https://git.sv.gnu.org/cgit/findutils.git/commit/?id=a0169f9aac1 Have a nice day, Berny

Re: man find: unify symlink / symbolic link

2019-11-12 Thread 積丹尼 Dan Jacobson
> "BV" == Bernhard Voelker writes: BV> WDYT? Great.

Re: man find: unify symlink / symbolic link

2019-11-12 Thread Bernhard Voelker
On 2019-11-10 00:37, 積丹尼 Dan Jacobson wrote: > On man find, the only line that talks about "symlinks" is > > > %Y File's type (like %y), plus follow symlinks: `L'=loop, >`N'=nonexistent, `?' for any other error when determining >the type of the symlin

Re: Is there a way to let find return non-zero when nothing is found?

2019-11-12 Thread Bernhard Voelker
On 2019-11-11 18:37, Stephane Chazelas wrote: > Note that NetBSD's find has a "-exit " predicate, which > you could use here to return one different from 0 and the code > returned for errors: > > find . ... -exit 12 > case $? in > (12) echo found;; > (0) echo not there;; > (*) echo not sure

man find: unify symlink / symbolic link

2019-11-12 Thread 積丹尼 Dan Jacobson
On man find, the only line that talks about "symlinks" is %Y File's type (like %y), plus follow symlinks: `L'=loop, `N'=nonexistent, `?' for any other error when determining the type of the symlink target. All the many rest on that page call them symbo