浏览代码

readelf: add example (#12664)

* readelf: add --section-headers command sample

1. Add section-headers command sample as it is commonly used in readelf.

2. Make the command description more precise and concise for --file-header command.
jimmychang851129 10 月之前
父节点
当前提交
5a4a939d97
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      pages/linux/readelf.md

+ 5 - 1
pages/linux/readelf.md

@@ -15,6 +15,10 @@
 
 `readelf --symbols {{path/to/binary}}`
 
-- Display the information contained in the ELF header at the start of the file:
+- Display ELF header information:
 
 `readelf --file-header {{path/to/binary}}`
+
+- Display ELF section header information:
+
+`readelf --section-headers {{path/to/binary}}`