将shell的输出重定向/存储到GDB变量中?

时间:2011-07-30 20:56:15

标签: shell gdb

我想知道如何知道GDB中的当前系统架构并将此信息存储到变量中以供以后评估。

类似的东西:

set variable $x=`shell uname -m`

1 个答案:

答案 0 :(得分:19)

theres 2 way:

旧方式:

(gdb) shell echo set \$x=\"$(uname -m)\" >/tmp/foo.gdb
(gdb) source /tmp/foo.gdb

更新的python:

(gdb) python gdb.execute("set $y=\"" + os.uname()[4] + "\"")