projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'dev' of feistymeow.org:feisty_meow into dev
[feisty_meow.git]
/
scripts
/
buildor
/
vistu_locate_function.sh
1
#!/bin/bash
2
3
filename="$1"; shift
4
function_name="$1"; shift
5
6
good_path="$(cygpath -w -s $filename)"
7
8
#/exports
9
dumpbin /all $good_path | grep -q -i "$function_name"
10
if [ $? -eq 0 ]; then
11
echo "Found $function_name in $filename"
12
fi
13
14
15