Commit c888b752 authored by Kirill Smelkov's avatar Kirill Smelkov

bin/ldd-direct

To print only direct dependecies of an elf.
parent 9b00cc9c
#!/bin/sh
# like `ldd $1` but prints only direct dependecies
# (ldd prints all - dependencies of dependencies, etc)
objdump -p "$@" | grep NEEDED
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment