images/alpine/scan-deps.sh
2022-10-30 20:00:02 +01:00

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 }'