]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/bmake/find_lib.sh
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / bmake / find_lib.sh
1 :
2 re=$1; shift
3
4 for lib in $*
5 do
6   found=`nm $lib | egrep "$re"`
7   case "$found" in
8   "") ;;
9   *)    echo "$lib: $found";;
10   esac
11 done
12
13