pldd
(1)display dynamic shared objects linked into a process
pldd pid pldd option
Options
4--help—
--usageDisplay a short usage message and exit.
--version—
-VDisplay program version information and exit.
DESCRIPTION
EXIT STATUS
VERSIONS
STANDARDS
HISTORY
NOTES
The command
lsof -p PID
also shows output that includes the dynamic shared objects that are linked into a process.
The gdb(1) info shared command also shows the shared libraries being used by a process, so that one can obtain similar output to pldd using a command such as the following (to monitor the process with the specified pid):
$ gdb -ex "set confirm off" -ex "set height 0" -ex "info shared" \
-ex "quit" -p $pid | grep '^0x.*0x'