diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-11-07 00:12:41 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-11-07 00:12:41 +0100 |
commit | 0232bcc108873aa829bc4ef2dc73f9450fb05cf8 (patch) | |
tree | 135da5641145166dd5f0e7733d1494a7893f8027 | |
parent | notes/bash: capitalize Bash (diff) | |
download | blog-0232bcc108873aa829bc4ef2dc73f9450fb05cf8.tar.gz blog-0232bcc108873aa829bc4ef2dc73f9450fb05cf8.zip |
notes/gdb: prettier tables
-rw-r--r-- | _notes/gdb.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_notes/gdb.md b/_notes/gdb.md index 5e649ea..6ca5a28 100644 --- a/_notes/gdb.md +++ b/_notes/gdb.md @@ -28,7 +28,7 @@ Core dumps | List dumps | `coredumpctl` | Debug the last dump | `coredumpctl gdb` | Extract the last dump | `coredumpctl dump -o core` - {: .table .table-bordered .table-condensed } + {: .table .table-bordered } </div> .gdbinit @@ -63,7 +63,7 @@ Basics | Step over line | `n` | Step over instruction | `si` | Step out of frame | `fin` -{: .table .table-bordered .table-condensed } +{: .table .table-bordered } </div> @@ -87,7 +87,7 @@ Data inspection | Disassemble all code sections | `objdump -d /proc/self/exe` | Disassemble a single section | `objdump -d -j .init /proc/self/exe` | Display the section contents | `objdump -s -j .data /proc/self/exe` -{: .table .table-bordered .table-condensed } +{: .table .table-bordered } </div> |