repo.or.cz
/
samba4-gss.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ctdb-scripts: Don't set arp_filter=1 by default in 10.interface
[samba4-gss.git]
/
source4
/
scripting
/
devel
/
nmfind
blob
865c0d71acff1fc0de066778b164616f0437a16b
1
#!/bin/sh
2
3
# find object files containing a symbol
4
# for example:
5
# nmfind foo_function $(find bin/default -name '*.o')
6
7
TARGET
=
$1
8
shift
9
for
f
in
$
*;
do
10
if
nm
$f
2
>&
1
|
grep
$TARGET
>/
dev
/
null
;
then
11
echo
[
$f
]
12
nm
$f
|
grep
$TARGET
13
echo
14
fi
15
done