ldd
Files
SKILL.mdagentsreferencesscripts
Install
Install the containing plugin
/plugin install shared-skills@llm-skills
Invoke this skill after installation
/shared-skills:ldd
This skill is bundled inside shared-skills. Install the plugin once, then Claude Code can use any of its included skills. Browse the full plugin repository at github.com/alisonaquinas/llm-shared-skills.
SKILL.md
name: ldd description: List dynamic library dependencies of binaries. Use when the agent needs to search, filter, or transform data efficiently.
Ldd
List dynamic library dependencies of binaries
Quick Start
- Verify
lddis available:ldd --versionorman ldd - Establish the command surface:
man lddorldd --help - Start with basic usage:
ldd [options] [input]
Intent Router
references/install-and-setup.md— Installing lddreferences/cheatsheet.md— Common options and patternsreferences/advanced-usage.md— Advanced techniquesreferences/troubleshooting.md— Common errors and solutions
Core Workflow
- Verify ldd is available:
ldd --version - Test with sample data first
- Validate output before batch processing
- Document exact commands for reproducibility
Quick Command Reference
ldd --version # Check version
ldd --help # Show help
ldd [options] [input] # Basic usage
man ldd # Full manual
Safety Notes
| Area | Guardrail |
|---|---|
| Input validation | Verify input data format before processing. |
| Output handling | Validate output structure. |
| Large files | Test with smaller samples first. |
Source Policy
- Treat installed behavior and man page as truth.
Resource Index
scripts/install.sh— Install on macOS or Linux.scripts/install.ps1— Install on Windows or any platform.