freebsd-skq/20130123/find_lib.sh
sjg 69db492ce5 Tag bmake-20130123
Approved by:	marcel (mentor)
2013-01-31 16:47:34 +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