Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions pages/linux/imhex.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# imhex

> Hex editor for reverse engineers and programmers.
> More information: <https://docs.werwolv.net/imhex/>.

- Open a file in ImHex:

`imhex {{path/to/file}}`

- Create a new empty file:

`imhex --new`

- Open a file in the currently running ImHex instance and select a range of bytes (offsets in hexadecimal):

`imhex --open {{path/to/file}} --select {{0xstart_offset}} {{0xend_offset}}`

- Display information about a file:

`imhex --file-info {{path/to/file}}`

- Calculate the hash of a file using a specific algorithm (`md5`, `sha1`, `sha224`, `sha256`, `sha384`, `sha512`):

`imhex --hash {{algorithm}} {{path/to/file}}`

- Generate a hex dump of a file:

`imhex --hexdump {{path/to/file}}`

- Display version:

`imhex --version`