1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 15:19:43 +01:00
tldr/pages/linux/readpe.md
Lena c9775847b6
pages/*: use the imperative in descriptions (#12574)
* pages/*: use the imperative in descriptions

* go-fmt: put the description on one line
2024-04-18 09:34:00 +05:30

627 B

readpe

Display 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}}