freebsd-dev/external/bsd/bmake/dist/find_lib.sh
2012-06-20 00:41:31 +00: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