My goal is to write a shell script that uses "objdump -p" command to find all executable files that depend on the specified library in the specified directory. (OpenBSD). I try something like this:
find $1 -perm -111 -print0 | xargs -r0 objdump -p | grep -l "NEEDED $2"
But this solution doesn't work because grep cannot figure out the filenames in which it found the given match. The difficulty is to determine the names of the executable files in which grep found the specified library. Can anyone suggest a solution using the "objdump -p" command?
The trick is to execute a shell script rather than a single command to be able to re-use the file name.
Example usage: