System Grab Bag

View all TLDR pages from Linux (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.