Update cheatsheets

This commit is contained in:
ivuorinen
2025-06-25 00:20:50 +00:00
parent 9b28211252
commit f4e4b40a39
35 changed files with 147 additions and 70 deletions

View File

@@ -15,16 +15,16 @@ source: https://github.com/tldr-pages/tldr.git
- 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}}`