s4/scripting: Remove legacy selftest-vars.sh script
[sfrench/samba-autobuild/.git] / source4 / scripting / devel / nmfind
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