681 lines
17 KiB
HTML
681 lines
17 KiB
HTML
|
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
<HTML><HEAD><TITLE>Man page of CARGO-TREE</TITLE>
|
||
</HEAD><BODY>
|
||
<H1>CARGO-TREE</H1>
|
||
Section: (1)<BR>Updated: 2020-06-25<BR><A HREF="#index">Index</A>
|
||
<A HREF="/cgi-bin/man/man2html">Return to Main Contents</A><HR>
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<A NAME="lbAB"> </A>
|
||
<H2>NAME</H2>
|
||
|
||
cargo-tree - Display a tree visualization of a dependency graph
|
||
<A NAME="lbAC"> </A>
|
||
<H2>SYNOPSIS</H2>
|
||
|
||
<P>
|
||
<B>cargo tree [</B><I>OPTIONS</I>]
|
||
<A NAME="lbAD"> </A>
|
||
<H2>DESCRIPTION</H2>
|
||
|
||
<P>
|
||
This command will display a tree of dependencies to the terminal. An example
|
||
of a simple project that depends on the "rand" package:
|
||
<P>
|
||
<DL COMPACT><DT id="1"><DD>
|
||
|
||
<PRE>
|
||
myproject v0.1.0 (/myproject)
|
||
`-- rand v0.7.3
|
||
|-- getrandom v0.1.14
|
||
| |-- cfg-if v0.1.10
|
||
| `-- libc v0.2.68
|
||
|-- libc v0.2.68 (*)
|
||
|-- rand_chacha v0.2.2
|
||
| |-- ppv-lite86 v0.2.6
|
||
| `-- rand_core v0.5.1
|
||
| `-- getrandom v0.1.14 (*)
|
||
`-- rand_core v0.5.1 (*)
|
||
[build-dependencies]
|
||
`-- cc v1.0.50
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
<P>
|
||
Packages marked with <B>(*)</B> have been "de-duplicated". The dependencies for the
|
||
package have already been shown elswhere in the graph, and so are not
|
||
repeated. Use the <B>--no-dedupe</B> option to repeat the duplicates.
|
||
<P>
|
||
The <B>-e</B> flag can be used to select the dependency kinds to display. The
|
||
"features" kind changes the output to display the features enabled by
|
||
each dependency. For example, <B>cargo tree -e features</B>:
|
||
<P>
|
||
<DL COMPACT><DT id="2"><DD>
|
||
|
||
<PRE>
|
||
myproject v0.1.0 (/myproject)
|
||
`-- log feature "serde"
|
||
`-- log v0.4.8
|
||
|-- serde v1.0.106
|
||
`-- cfg-if feature "default"
|
||
`-- cfg-if v0.1.10
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
<P>
|
||
In this tree, <B>myproject</B> depends on <B>log</B> with the <B>serde</B> feature. <B>log</B> in
|
||
turn depends on <B>cfg-if</B> with "default" features. When using <B>-e features</B> it
|
||
can be helpful to use <B>-i</B> flag to show how the features flow into a package.
|
||
See the examples below for more detail.
|
||
<A NAME="lbAE"> </A>
|
||
<H2>OPTIONS</H2>
|
||
|
||
<A NAME="lbAF"> </A>
|
||
<H3>Tree Options</H3>
|
||
|
||
<P>
|
||
<B>-i</B> <I>SPEC</I>, <B>--invert</B> <I>SPEC</I>
|
||
<DL COMPACT><DT id="3"><DD>
|
||
Show the reverse dependencies for the given package. This flag will invert
|
||
the tree and display the packages that depend on the given package.
|
||
<P>
|
||
Note that in a workspace, by default it will only display the package's
|
||
reverse dependencies inside the tree of the workspace member in the current
|
||
directory. The <B>--workspace</B> flag can be used to extend it so that it will
|
||
show the package's reverse dependencies across the entire workspace. The <B>-p</B>
|
||
flag can be used to display the package's reverse dependencies only with the
|
||
subtree of the package given to <B>-p</B>.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--no-dedupe</B>
|
||
<DL COMPACT><DT id="4"><DD>
|
||
Do not de-duplicate repeated dependencies. Usually, when a package has
|
||
already displayed its dependencies, further occurrences will not
|
||
re-display its dependencies, and will include a <B>(*)</B> to indicate it has
|
||
already been shown. This flag will cause those duplicates to be repeated.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>-d</B>, <B>--duplicates</B>
|
||
<DL COMPACT><DT id="5"><DD>
|
||
Show only dependencies which come in multiple versions (implies
|
||
<B>--invert</B>). When used with the <B>-p</B> flag, only shows duplicates within
|
||
the subtree of the given package.
|
||
<P>
|
||
It can be beneficial for build times and executable sizes to avoid building
|
||
that same package multiple times. This flag can help identify the offending
|
||
packages. You can then investigate if the package that depends on the
|
||
duplicate with the older version can be updated to the newer version so that
|
||
only one instance is built.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>-e</B> <I>KINDS</I>, <B>--edges</B> <I>KINDS</I>
|
||
<DL COMPACT><DT id="6"><DD>
|
||
The dependency kinds to display. Takes a comma separated list of values:
|
||
<P>
|
||
<DL COMPACT><DT id="7"><DD>
|
||
•
|
||
|
||
|
||
<B>all</B> — Show all edge kinds.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="8"><DD>
|
||
•
|
||
|
||
|
||
<B>normal</B> — Show normal dependencies.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="9"><DD>
|
||
•
|
||
|
||
|
||
<B>build</B> — Show build dependencies.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="10"><DD>
|
||
•
|
||
|
||
|
||
<B>dev</B> — Show development dependencies.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="11"><DD>
|
||
•
|
||
|
||
|
||
<B>features</B> — Show features enabled by each dependency. If this is
|
||
the only kind given, then it will automatically include the other
|
||
dependency kinds.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="12"><DD>
|
||
•
|
||
|
||
|
||
<B>no-normal</B> — Do not include normal dependencies.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="13"><DD>
|
||
•
|
||
|
||
|
||
<B>no-build</B> — Do not include build dependencies.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="14"><DD>
|
||
•
|
||
|
||
|
||
<B>no-dev</B> — Do not include development dependencies.
|
||
</DL>
|
||
|
||
<P>
|
||
The <B>no-</B> prefixed options cannot be mixed with the other dependency kinds.
|
||
<P>
|
||
The default is <B>normal,build,dev</B>.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--target</B> <I>TRIPLE</I>
|
||
<DL COMPACT><DT id="15"><DD>
|
||
Filter dependencies matching the given target-triple.
|
||
The default is the host platform. Use the value <B>all</B> to include <B>all</B>
|
||
targets.
|
||
</DL>
|
||
|
||
<A NAME="lbAG"> </A>
|
||
<H3>Tree Formatting Options</H3>
|
||
|
||
<P>
|
||
<B>--charset</B> <I>CHARSET</I>
|
||
<DL COMPACT><DT id="16"><DD>
|
||
Chooses the character set to use for the tree. Valid values are "utf8" or
|
||
"ascii". Default is "utf8".
|
||
</DL>
|
||
|
||
<P>
|
||
<B>-f</B> <I>FORMAT</I>, <B>--format</B> <I>FORMAT</I>
|
||
<DL COMPACT><DT id="17"><DD>
|
||
Set the format string for each package. The default is "{p}".
|
||
<P>
|
||
This is an arbitrary string which will be used to display each package. The following
|
||
strings will be replaced with the corresponding value:
|
||
<P>
|
||
<DL COMPACT><DT id="18"><DD>
|
||
•
|
||
|
||
|
||
<B>{p}</B> — The package name.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="19"><DD>
|
||
•
|
||
|
||
|
||
<B>{l}</B> — The package license.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="20"><DD>
|
||
•
|
||
|
||
|
||
<B>{r}</B> — The package repository URL.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="21"><DD>
|
||
•
|
||
|
||
|
||
<B>{f}</B> — Comma-separated list of package features that are enabled.
|
||
</DL>
|
||
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--prefix</B> <I>PREFIX</I>
|
||
<DL COMPACT><DT id="22"><DD>
|
||
Sets how each line is displayed. The <I>PREFIX</I> value can be one of:
|
||
<P>
|
||
<DL COMPACT><DT id="23"><DD>
|
||
•
|
||
|
||
|
||
<B>indent</B> (default) — Shows each line indented as a tree.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="24"><DD>
|
||
•
|
||
|
||
|
||
<B>depth</B> — Show as a list, with the numeric depth printed before each entry.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="25"><DD>
|
||
•
|
||
|
||
|
||
<B>none</B> — Show as a flat list.
|
||
</DL>
|
||
|
||
</DL>
|
||
|
||
<A NAME="lbAH"> </A>
|
||
<H3>Package Selection</H3>
|
||
|
||
<P>
|
||
By default, when no package selection options are given, the packages selected
|
||
depend on the selected manifest file (based on the current working directory if
|
||
<B>--manifest-path</B> is not given). If the manifest is the root of a workspace then
|
||
the workspaces default members are selected, otherwise only the package defined
|
||
by the manifest will be selected.
|
||
<P>
|
||
The default members of a workspace can be set explicitly with the
|
||
<B>workspace.default-members</B> key in the root manifest. If this is not set, a
|
||
virtual workspace will include all workspace members (equivalent to passing
|
||
<B>--workspace</B>), and a non-virtual workspace will include only the root crate itself.
|
||
<P>
|
||
<B>-p</B> <I>SPEC</I>..., <B>--package</B> <I>SPEC</I>...
|
||
<DL COMPACT><DT id="26"><DD>
|
||
Display only the specified packages. See <B><A HREF="/cgi-bin/man/man2html?1+cargo-pkgid">cargo-pkgid</A></B>(1) for the
|
||
SPEC format. This flag may be specified multiple times.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--workspace</B>
|
||
<DL COMPACT><DT id="27"><DD>
|
||
Display all members in the workspace.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--exclude</B> <I>SPEC</I>...
|
||
<DL COMPACT><DT id="28"><DD>
|
||
Exclude the specified packages. Must be used in conjunction with the
|
||
<B>--workspace</B> flag. This flag may be specified multiple times.
|
||
</DL>
|
||
|
||
<A NAME="lbAI"> </A>
|
||
<H3>Manifest Options</H3>
|
||
|
||
<P>
|
||
<B>--manifest-path</B> <I>PATH</I>
|
||
<DL COMPACT><DT id="29"><DD>
|
||
Path to the <B>Cargo.toml</B> file. By default, Cargo searches for the
|
||
<B>Cargo.toml</B> file in the current directory or any parent directory.
|
||
</DL>
|
||
|
||
<A NAME="lbAJ"> </A>
|
||
<H3>Feature Selection</H3>
|
||
|
||
<P>
|
||
The feature flags allow you to control the enabled features for the "current"
|
||
package. The "current" package is the package in the current directory, or the
|
||
one specified in <B>--manifest-path</B>. If running in the root of a virtual
|
||
workspace, then the default features are selected for all workspace members,
|
||
or all features if <B>--all-features</B> is specified.
|
||
<P>
|
||
When no feature options are given, the <B>default</B> feature is activated for
|
||
every selected package.
|
||
<P>
|
||
<B>--features</B> <I>FEATURES</I>
|
||
<DL COMPACT><DT id="30"><DD>
|
||
Space or comma separated list of features to activate. These features only
|
||
apply to the current directory's package. Features of direct dependencies
|
||
may be enabled with <B><dep-name>/<feature-name></B> syntax. This flag may be
|
||
specified multiple times, which enables all specified features.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--all-features</B>
|
||
<DL COMPACT><DT id="31"><DD>
|
||
Activate all available features of all selected packages.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--no-default-features</B>
|
||
<DL COMPACT><DT id="32"><DD>
|
||
Do not activate the <B>default</B> feature of the current directory's
|
||
package.
|
||
</DL>
|
||
|
||
<A NAME="lbAK"> </A>
|
||
<H3>Display Options</H3>
|
||
|
||
<P>
|
||
<B>-v</B>, <B>--verbose</B>
|
||
<DL COMPACT><DT id="33"><DD>
|
||
Use verbose output. May be specified twice for "very verbose" output which
|
||
includes extra output such as dependency warnings and build script output.
|
||
May also be specified with the <B>term.verbose</B>
|
||
|
||
<I>config value</I> <<A HREF="https://doc.rust-lang.org/cargo/reference/config.html">https://doc.rust-lang.org/cargo/reference/config.html</A>>.
|
||
|
||
</DL>
|
||
|
||
<P>
|
||
<B>-q</B>, <B>--quiet</B>
|
||
<DL COMPACT><DT id="34"><DD>
|
||
No output printed to stdout.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--color</B> <I>WHEN</I>
|
||
<DL COMPACT><DT id="35"><DD>
|
||
Control when colored output is used. Valid values:
|
||
<P>
|
||
<DL COMPACT><DT id="36"><DD>
|
||
•
|
||
|
||
|
||
<B>auto</B> (default): Automatically detect if color support is available on the
|
||
terminal.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="37"><DD>
|
||
•
|
||
|
||
|
||
<B>always</B>: Always display colors.
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="38"><DD>
|
||
•
|
||
|
||
|
||
<B>never</B>: Never display colors.
|
||
</DL>
|
||
|
||
<P>
|
||
May also be specified with the <B>term.color</B>
|
||
|
||
<I>config value</I> <<A HREF="https://doc.rust-lang.org/cargo/reference/config.html">https://doc.rust-lang.org/cargo/reference/config.html</A>>.
|
||
|
||
</DL>
|
||
|
||
<A NAME="lbAL"> </A>
|
||
<H3>Common Options</H3>
|
||
|
||
<P>
|
||
<B>+TOOLCHAIN</B>
|
||
<DL COMPACT><DT id="39"><DD>
|
||
If Cargo has been installed with rustup, and the first argument to <B>cargo</B>
|
||
begins with <B>+</B>, it will be interpreted as a rustup toolchain name (such
|
||
as <B>+stable</B> or <B>+nightly</B>).
|
||
See the
|
||
<I>rustup documentation</I> <<A HREF="https://github.com/rust-lang/rustup/">https://github.com/rust-lang/rustup/</A>>
|
||
|
||
for more information about how toolchain overrides work.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>-h</B>, <B>--help</B>
|
||
<DL COMPACT><DT id="40"><DD>
|
||
Prints help information.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>-Z</B> <I>FLAG</I>...
|
||
<DL COMPACT><DT id="41"><DD>
|
||
Unstable (nightly-only) flags to Cargo. Run <B>cargo -Z help</B> for
|
||
details.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--frozen</B>, <B>--locked</B>
|
||
<DL COMPACT><DT id="42"><DD>
|
||
Either of these flags requires that the <B>Cargo.lock</B> file is
|
||
up-to-date. If the lock file is missing, or it needs to be updated, Cargo will
|
||
exit with an error. The <B>--frozen</B> flag also prevents Cargo from
|
||
attempting to access the network to determine if it is out-of-date.
|
||
<P>
|
||
These may be used in environments where you want to assert that the
|
||
<B>Cargo.lock</B> file is up-to-date (such as a CI build) or want to avoid network
|
||
access.
|
||
</DL>
|
||
|
||
<P>
|
||
<B>--offline</B>
|
||
<DL COMPACT><DT id="43"><DD>
|
||
Prevents Cargo from accessing the network for any reason. Without this
|
||
flag, Cargo will stop with an error if it needs to access the network and
|
||
the network is not available. With this flag, Cargo will attempt to
|
||
proceed without the network if possible.
|
||
<P>
|
||
Beware that this may result in different dependency resolution than online
|
||
mode. Cargo will restrict itself to crates that are downloaded locally, even
|
||
if there might be a newer version as indicated in the local copy of the index.
|
||
See the <B><A HREF="/cgi-bin/man/man2html?1+cargo-fetch">cargo-fetch</A></B>(1) command to download dependencies before going
|
||
offline.
|
||
<P>
|
||
May also be specified with the <B>net.offline</B>
|
||
<I>config value</I> <<A HREF="https://doc.rust-lang.org/cargo/reference/config.html">https://doc.rust-lang.org/cargo/reference/config.html</A>>.
|
||
|
||
</DL>
|
||
|
||
<A NAME="lbAM"> </A>
|
||
<H2>ENVIRONMENT</H2>
|
||
|
||
<P>
|
||
See
|
||
<I>the reference</I> <<A HREF="https://doc.rust-lang.org/cargo/reference/environment-variables.html">https://doc.rust-lang.org/cargo/reference/environment-variables.html</A>>
|
||
|
||
for
|
||
details on environment variables that Cargo reads.
|
||
<A NAME="lbAN"> </A>
|
||
<H2>EXIT STATUS</H2>
|
||
|
||
<P>
|
||
0
|
||
<DL COMPACT><DT id="44"><DD>
|
||
Cargo succeeded.
|
||
</DL>
|
||
|
||
<P>
|
||
101
|
||
<DL COMPACT><DT id="45"><DD>
|
||
Cargo failed to complete.
|
||
</DL>
|
||
|
||
<A NAME="lbAO"> </A>
|
||
<H2>EXAMPLES</H2>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="46"><DD>
|
||
1.
|
||
|
||
|
||
Display the tree for the package in the current directory:
|
||
<P>
|
||
<DL COMPACT><DT id="47"><DD>
|
||
|
||
<PRE>
|
||
cargo tree
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="48"><DD>
|
||
2.
|
||
|
||
|
||
Display all the packages that depend on the <B>syn</B> package:
|
||
<P>
|
||
<DL COMPACT><DT id="49"><DD>
|
||
|
||
<PRE>
|
||
cargo tree -i syn
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="50"><DD>
|
||
3.
|
||
|
||
|
||
Show the features enabled on each package:
|
||
<P>
|
||
<DL COMPACT><DT id="51"><DD>
|
||
|
||
<PRE>
|
||
cargo tree --format "{p} {f}"
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="52"><DD>
|
||
4.
|
||
|
||
|
||
Show all packages that are built multiple times. This can happen if multiple
|
||
semver-incompatible versions appear in the tree (like 1.0.0 and 2.0.0).
|
||
<P>
|
||
<DL COMPACT><DT id="53"><DD>
|
||
|
||
<PRE>
|
||
cargo tree -d
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
</DL>
|
||
|
||
<P>
|
||
<DL COMPACT><DT id="54"><DD>
|
||
5.
|
||
|
||
|
||
Explain why features are enabled for the <B>syn</B> package:
|
||
<P>
|
||
<DL COMPACT><DT id="55"><DD>
|
||
|
||
<PRE>
|
||
cargo tree -e features -i syn
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
<P>
|
||
The <B>-e features</B> flag is used to show features. The <B>-i</B> flag is used to
|
||
invert the graph so that it displays the packages that depend on <B>syn</B>. An
|
||
example of what this would display:
|
||
<P>
|
||
<DL COMPACT><DT id="56"><DD>
|
||
|
||
<PRE>
|
||
syn v1.0.17
|
||
|-- syn feature "clone-impls"
|
||
| `-- syn feature "default"
|
||
| `-- rustversion v1.0.2
|
||
| `-- rustversion feature "default"
|
||
| `-- myproject v0.1.0 (/myproject)
|
||
| `-- myproject feature "default" (command-line)
|
||
|-- syn feature "default" (*)
|
||
|-- syn feature "derive"
|
||
| `-- syn feature "default" (*)
|
||
|-- syn feature "full"
|
||
| `-- rustversion v1.0.2 (*)
|
||
|-- syn feature "parsing"
|
||
| `-- syn feature "default" (*)
|
||
|-- syn feature "printing"
|
||
| `-- syn feature "default" (*)
|
||
|-- syn feature "proc-macro"
|
||
| `-- syn feature "default" (*)
|
||
`-- syn feature "quote"
|
||
|-- syn feature "printing" (*)
|
||
`-- syn feature "proc-macro" (*)
|
||
</PRE>
|
||
|
||
</DL>
|
||
|
||
|
||
<P>
|
||
To read this graph, you can follow the chain for each feature from the root to
|
||
see why it is included. For example, the "full" feature is added by the
|
||
<B>rustversion</B> crate which is included from <B>myproject</B> (with the default
|
||
features), and <B>myproject</B> is the package selected on the command-line. All
|
||
of the other <B>syn</B> features are added by the "default" feature ("quote" is
|
||
added by "printing" and "proc-macro", both of which are default features).
|
||
<P>
|
||
If you're having difficulty cross-referencing the de-duplicated <B>(*)</B> entries,
|
||
try with the <B>--no-dedupe</B> flag to get the full output.
|
||
</DL>
|
||
|
||
<A NAME="lbAP"> </A>
|
||
<H2>SEE ALSO</H2>
|
||
|
||
<P>
|
||
<B><A HREF="/cgi-bin/man/man2html?1+cargo">cargo</A></B>(1), <B><A HREF="/cgi-bin/man/man2html?1+cargo-metadata">cargo-metadata</A></B>(1)
|
||
|
||
<HR>
|
||
<A NAME="index"> </A><H2>Index</H2>
|
||
<DL>
|
||
<DT id="57"><A HREF="#lbAB">NAME</A><DD>
|
||
<DT id="58"><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||
<DT id="59"><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||
<DT id="60"><A HREF="#lbAE">OPTIONS</A><DD>
|
||
<DL>
|
||
<DT id="61"><A HREF="#lbAF">Tree Options</A><DD>
|
||
<DT id="62"><A HREF="#lbAG">Tree Formatting Options</A><DD>
|
||
<DT id="63"><A HREF="#lbAH">Package Selection</A><DD>
|
||
<DT id="64"><A HREF="#lbAI">Manifest Options</A><DD>
|
||
<DT id="65"><A HREF="#lbAJ">Feature Selection</A><DD>
|
||
<DT id="66"><A HREF="#lbAK">Display Options</A><DD>
|
||
<DT id="67"><A HREF="#lbAL">Common Options</A><DD>
|
||
</DL>
|
||
<DT id="68"><A HREF="#lbAM">ENVIRONMENT</A><DD>
|
||
<DT id="69"><A HREF="#lbAN">EXIT STATUS</A><DD>
|
||
<DT id="70"><A HREF="#lbAO">EXAMPLES</A><DD>
|
||
<DT id="71"><A HREF="#lbAP">SEE ALSO</A><DD>
|
||
</DL>
|
||
<HR>
|
||
This document was created by
|
||
<A HREF="/cgi-bin/man/man2html">man2html</A>,
|
||
using the manual pages.<BR>
|
||
Time: 00:05:08 GMT, March 31, 2021
|
||
</BODY>
|
||
</HTML>
|