images/alpine/scan-deps.sh

3 lines
173 B
Bash
Raw Normal View History

2022-10-30 19:00:02 +00:00
#!/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 }'