mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-05 05:15:24 +02:00
ldd: add option placeholders (#16941)
This commit is contained in:
parent
95bdbecf32
commit
9fa44716c9
1 changed files with 4 additions and 4 deletions
|
@ -10,16 +10,16 @@
|
|||
|
||||
- Display all information about dependencies:
|
||||
|
||||
`ldd --verbose {{path/to/binary}}`
|
||||
`ldd {{[-v|--verbose]}} {{path/to/binary}}`
|
||||
|
||||
- Display unused direct dependencies:
|
||||
|
||||
`ldd --unused {{path/to/binary}}`
|
||||
`ldd {{[-u|--unused]}} {{path/to/binary}}`
|
||||
|
||||
- Report missing data objects and perform data relocations:
|
||||
|
||||
`ldd --data-relocs {{path/to/binary}}`
|
||||
`ldd {{[-d|--data-relocs]}} {{path/to/binary}}`
|
||||
|
||||
- Report missing data objects and functions, and perform relocations for both:
|
||||
|
||||
`ldd --function-relocs {{path/to/binary}}`
|
||||
`ldd {{[-r|--function-relocs]}} {{path/to/binary}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue