repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct math and limerick.
[dragonfly.git]
/
contrib
/
bmake
/
find_lib.sh
blob
3c2e4af2f2515d16b695170740dd6069a200e192
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