Featured image of post 超级实用的bash技巧

超级实用的bash技巧

123

使用screen后台运行gdb

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# 创建会话
screen -S <SESSION_NAME>

# 在screen会话中运行gdb
gdb attach <PID>

# 按ctrl + a,再按d,将当前会话放入后台
crtl + a
d

# 可以随时恢复会话(即使使用xshell远程连接,断开也不受影响)
screen -r <SESSION_NAME>
本博客已稳定运行
访客统计