Files
bpfire/tools/find-missing-libs.sh
Michael Tremer 21eead8d17 Add script to search for missing libraries
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2019-02-24 11:45:55 +00:00

19 lines
345 B
Bash

#!/bin/bash
# This scripts lists binaries that have missing libraries.
# Arguments are paths to search in
main() {
local path
for path in $@; do
local file
for file in $(find "${path}" -type f); do
if ldd "${file}" 2>/dev/null | grep -q "not found"; then
echo "${file}"
ldd "${file}"
fi
done
done
}
main "$@" || exit $?