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