offset-extract

pull/8/merge
Guy Lichtman 2012-04-11 16:17:50 +03:00
parent 88159229da
commit eb3e38116c
1 changed files with 2 additions and 2 deletions

View File

@ -2,11 +2,11 @@
if [ $# = 0 ]; then
echo "Usage: $0 <mysqld executable> [optional mysqld symbols]"
echo "Will extract offsets from mysqld. Requires gdb and mysqld symbols."
echo "Will extract offsets from mysqld. Requires gdb, md5sum and mysqld symbols."
exit 1
fi
#extract the version
#extract the version of mysqld
FULL_MYVER=`$1 --version | grep -P -o 'Ver\s+[\w\.-]+'| awk '{print $2}'`