Skip to content

Commit

Permalink
Create guide for uninstalling
Browse files Browse the repository at this point in the history
  • Loading branch information
lebr0nli committed Nov 29, 2023
1 parent 7b47b8c commit da00969
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ $ bash -c "$(curl -fsSL https://raw.githubusercontent.com/lebr0nli/GEP/main/inst
$ bash -c "$(wget https://raw.githubusercontent.com/lebr0nli/GEP/main/install.sh -O -)"
```

> **Note**
> After the installation, the script will automatically add `source /path/to/GEP/gdbinit-gep.py` to your `~/.gdbinit` file. Please make this line is **always** at the end of your `~/.gdbinit` file to avoid some unexpected behaviors.
3. Enjoy!

## How to update the version of GEP?
Expand Down Expand Up @@ -100,6 +103,22 @@ If you have some user-defined function that has `dont-repeat` property, add your
>
> If you found some builtin commands which should or shouldn't be added by default, let me know on the issue page, thanks!
## Uninstall

If this is your current `~/.gdbinit` file after the installation:

```shell
source /path/to/GEP/gdbinit-gep.py
```

Then, you can uninstall this plug-in by:

```shell
rm -rf /path/to/GEP
```

And remove `source /path/to/GEP/gdbinit-gep.py` from your `~/.gdbinit`.

## Credits

Some ideas/code are inspired by [hugsy/gef](https://github.com/hugsy/gef) and [pwndbg/pwndbg](https://github.com/pwndbg/pwndbg).
Expand Down

0 comments on commit da00969

Please sign in to comment.