From 9fa44716c91c26f3bb432cddaff28c0255ab0502 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 24 Jun 2025 21:17:06 +0300 Subject: [PATCH] ldd: add option placeholders (#16941) --- pages/linux/ldd.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/ldd.md b/pages/linux/ldd.md index 72cd6eb074..de4e55bca4 100644 --- a/pages/linux/ldd.md +++ b/pages/linux/ldd.md @@ -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}}`