pkgsrc-ng/devel/bmake/files/find_lib.sh
2013-09-26 17:14:40 +02:00

14 lines
138 B
Bash
Executable File

:
re=$1; shift
for lib in $*
do
found=`nm $lib | egrep "$re"`
case "$found" in
"") ;;
*) echo "$lib: $found";;
esac
done