blob: 43fd793c5d9fabd3682dd10bc43ec34468b1f5da (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/ksh
# Get the address of a symbol in Hex.
# $1 = object/executable file name
# $2 = symbol name
/usr/ccs/bin/elfdump -t +s .symtab "$1" | grep "$2"$ | awk '{print $6}'
exit 0
|