1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
.\" Process this file with
.\" groff -man -Tascii foo.1
.\"
.TH libtree 1 "2020-04-13" Linux "User Manuals"
.SH NAME
libtree \- print shared object dependencies as a tree
.SH SYNOPSIS
.B libtree
[
.I option
]... [--] [
.I file
]...
.SH DESCRIPTION
.B libtree
prints the shared libraries required by each program or shared library on the command line as a tree. By default certain common system libraries are hidden to prune the tree.
.SH OPTIONS
.IP "-h, --help"
Print usage
.IP "--version"
Print version info
.IP "-p, --path"
Show the path of libraries instead of their
.B soname
.IP "-v"
Show libraries skipped by default
.IP "-vv"
Show dependencies of libraries skipped by default
.IP "-vvv"
Show dependencies of already encountered libraries
.IP "--ldconf arg"
Path to custom
.I ld.so.conf
or
.I ld-elf.so.conf
file
.IP "--max-depth n"
Limit library traversal to a depth of at most
.I n
\[char46] The value cannot be larger than 32.
.IP "--"
All arguments after '--' are interpreted as paths, not flags.
.SH ENVIRONMENT
.B LD_LIBRARY_PATH
can be used to provide additional search paths.
.SH AUTHOR
Harmen Stoppels <me@harmenstoppels.nl>
.SH "SEE ALSO"
.BR ldd (1)
|