mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 04:50:03 -04:00
14 lines
138 B
Bash
Executable File
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
|
|
|
|
|