You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/gdbinit.py

14 lines
293 B
Python

from __future__ import print_function
from __future__ import unicode_literals
import sys
from os import path
directory, file = path.split(__file__)
directory = path.expanduser(directory)
directory = path.abspath(directory)
sys.path.append(directory)
import pwndbg # isort:skip