Merge pull request #66 from LosFuzzys/fixes

Fixed missing escaping of $@ in the gdb extension install scripts
This commit is contained in:
Yan 2016-07-14 09:12:58 -07:00 committed by GitHub
commit c4eded5c29
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ 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 "$@"
exec gdb -q -ex init-gef "\$@"
EOF
chmod +rx bin/gdb-gef

View file

@ -6,7 +6,7 @@ git clone --depth 1 https://github.com/longld/peda.git
mkdir bin
cat > bin/gdb-peda <<EOF
#!/bin/sh
exec gdb -q -ex init-peda "$@"
exec gdb -q -ex init-peda "\$@"
EOF
chmod +rx bin/gdb-peda

View file

@ -6,7 +6,7 @@ git clone --depth 1 git clone https://github.com/zachriggle/pwndbg
mkdir bin
cat >> bin/pwndbg <<EOF
#!/bin/sh
exec gdb -q -ex init-pwndbg "$@"
exec gdb -q -ex init-pwndbg "\$@"
EOF
chmod +rx bin/pwndbg