?? gdbline
字號:
#!/bin/bash## $Id: gdbline,v 1.1 2004/08/02 16:27:55 corbet Exp $## gdbline module image## Outputs an add-symbol-file line suitable for pasting into gdb to examine# a loaded module.#cd /sys/module/$1/sectionsecho -n add-symbol-file $2 `/bin/cat .text`for section in .[a-z]* *; do if [ $section != ".text" ]; then echo " \\" echo -n " -s" $section `/bin/cat $section` fidoneecho
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -