mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
13 lines
138 B
Bash
Executable file
13 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
|
|
|
|
|