>>>>> "Neo" == Neo Jia <neojia@gmail.com> writes:
Neo> (gdb) python ./load_libc
Neo> File "<string>", line 1
Neo> ./load_libc
Neo> ^
Neo> SyntaxError: invalid syntax
Neo> Is this the right way to use it?
Nope, try:
python execfile('./load_libc')
Anything after "python" is passed directly to the python interpreter.
Tom