Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.bash.bug > #15412 > unrolled thread
| Started by | Robert Elz <kre@munnari.OZ.AU> |
|---|---|
| First post | 2019-09-23 21:02 +0700 |
| Last post | 2019-09-23 21:02 +0700 |
| Articles | 1 — 1 participant |
Back to article view | Back to gnu.bash.bug
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Wrong command option in the manual examples Robert Elz <kre@munnari.OZ.AU> - 2019-09-23 21:02 +0700
| From | Robert Elz <kre@munnari.OZ.AU> |
|---|---|
| Date | 2019-09-23 21:02 +0700 |
| Subject | Re: Wrong command option in the manual examples |
| Message-ID | <mailman.879.1569248190.2190.bug-bash@gnu.org> |
Date: Mon, 23 Sep 2019 12:29:18 +0300
From: Ilkka Virta <itvirta@iki.fi>
Message-ID: <59cf49b0-1292-b752-4fe8-8928fd558ebf@iki.fi>
| (as well the standard '-depth', somewhat confusingly)
There is no real standard for this - NetBSD has deprecated the -depth
operator (which never really was one) and replaced it by a -d option
which makes much more sense (-depth never really was the right way to
do it). -depth (the old way) is still supported for compat with old
scripts, but is only mentioned in doc in the STANDARDS section, as:
Historically, the -d, -h, and -x options were implemented using the
primaries "-depth", "-follow", and "-xdev". These primaries always
evaluated to true, and always took effect when the expression was parsed,
before the file system traversal began. As a result, some legal
expressions could be confusing. For example, in the expression "-print
-or -depth", -print always evaluates to true, so the standard meaning of
-or implies that -depth would never be evaluated, but that is not what
happens; in fact, -depth takes effect immediately, without testing
whether -print returns true or false.
What I think is the purpose of poor choice of an option, the FreeBSD -depth N
is done using -maxdepth and -mindepth in combination (using the same value).
(That is, to select a depth of exactly N, one requests a depth of no less
than N and no more than N (where N, if signed, has the usual meaning, of
course).
Either way (as "-depth N", or "-mindepth N -maxdepth N") this is an operator
that applies to each path element encountered, so makes sense to have as
an element of the find expression (unlike the old -depth which does not.)
I'd strongly suggest not using examples of anything using "-depth" - choose
some other example instead.
kre
Back to top | Article view | gnu.bash.bug
csiph-web