mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-05 02:39:13 +00:00
added "" to "$@"
This commit is contained in:
parent
681e5a1f7a
commit
a5110e1831
2 changed files with 2 additions and 2 deletions
|
@ -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
2
pwndbg/install
Normal file → Executable 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue