-
-
Notifications
You must be signed in to change notification settings - Fork 746
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install script seems to need bash #680
Labels
Comments
Where are you seeing instructions that say to use # via the install script
## using curl
$ bash -c "$(curl -fsSL http://gef.blah.cat/sh)"
## using wget
$ bash -c "$(wget http://gef.blah.cat/sh -O -)"
# or manually
$ wget -O ~/.gdbinit-gef.py -q http://gef.blah.cat/py
$ echo source ~/.gdbinit-gef.py >> ~/.gdbinit
# or alternatively from inside gdb directly
$ gdb -q
(gdb) pi import urllib.request as u, tempfile as t; g=t.NamedTemporaryFile(suffix='-gef.py'); open(g.name, 'wb+').write(u.urlopen('https://tinyurl.com/gef-master').read()); gdb.execute('source %s' % g.name) |
Thanks |
Fixed via 0b6d816 |
hugsy
pushed a commit
that referenced
this issue
Jul 26, 2021
48a9fd7. Thanks again. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dev
branch?gdb -nx
the closed ones) - and the PR?
Step 1: Describe your environment
Step 2: Describe your problem
Steps to reproduce
Install command fails with
sh
:Works with
bash
:/bin/sh
is dash on Ubuntu:When adding
set -x
around line 6:The text was updated successfully, but these errors were encountered: