mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
29 lines
421 B
Text
29 lines
421 B
Text
|
#!/bin/bash
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
git clone --depth 1 https://github.com/hugsy/gef.git
|
||
|
|
||
|
mkdir bin
|
||
|
cat > bin/gdb-gef <<EOF
|
||
|
#!/bin/sh
|
||
|
exec gdb -q -ex init-gef "$@"
|
||
|
EOF
|
||
|
chmod +rx bin/gdb-gef
|
||
|
|
||
|
cd gef
|
||
|
if ! grep "init-gef" ~/.gdbinit; then
|
||
|
cat >> ~/.gdbinit <<EOF
|
||
|
|
||
|
####
|
||
|
# added by ctf-tools
|
||
|
define init-gef
|
||
|
source $PWD/gef.py
|
||
|
end
|
||
|
document init-gef
|
||
|
Initializes the GEF (GDB Enhanced Features) plugin
|
||
|
end
|
||
|
####
|
||
|
|
||
|
EOF
|
||
|
fi
|