mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
readpe: add page (#6398)
This commit is contained in:
parent
0590a21917
commit
3f3f5d53f5
1 changed files with 28 additions and 0 deletions
28
pages/linux/readpe.md
Normal file
28
pages/linux/readpe.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# readpe
|
||||
|
||||
> Displays information about PE files.
|
||||
> More information: <https://manned.org/readpe>.
|
||||
|
||||
- Display all information about a PE file:
|
||||
|
||||
`readpe {{path/to/executable}}`
|
||||
|
||||
- Display all the headers present in a PE file:
|
||||
|
||||
`readpe --all-headers {{path/to/executable}}`
|
||||
|
||||
- Display all the sections present in a PE file:
|
||||
|
||||
`readpe --all-sections {{path/to/executable}}`
|
||||
|
||||
- Display a specific header from a PE file:
|
||||
|
||||
`readpe --header {{dos|coff|optional}} {{path/to/executable}}`
|
||||
|
||||
- List all imported functions:
|
||||
|
||||
`readpe --imports {{path/to/executable}}`
|
||||
|
||||
- List all exported functions:
|
||||
|
||||
`readpe --exports {{path/to/executable}}`
|
Loading…
Add table
Reference in a new issue