added "" to "$@"

This commit is contained in:
Michael Rodler 2016-04-01 10:47:02 +02:00
parent 681e5a1f7a
commit a5110e1831
2 changed files with 2 additions and 2 deletions

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

2
pwndbg/install Normal file → Executable file
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