2 lines
173 B
Bash
Executable file
2 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
scanelf --needed --nobanner --format '%n#p' --recursive $@ | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }'
|