https://github.com/darealshinji/simple-hexedit
Small utility that helps to view and edit bytes in binary files from command line
https://github.com/darealshinji/simple-hexedit
Last synced: about 1 month ago
JSON representation
Small utility that helps to view and edit bytes in binary files from command line
- Host: GitHub
- URL: https://github.com/darealshinji/simple-hexedit
- Owner: darealshinji
- License: mit
- Created: 2023-10-23T20:56:34.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-06-05T16:28:01.000Z (4 months ago)
- Last Synced: 2025-06-05T17:24:43.236Z (4 months ago)
- Language: C
- Size: 12.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Small utility that helps to view and edit bytes in binary files from command line.
```
usage:
simple-hexedit --help
simple-hexedit r[ead] [ ]
simple-hexedit w[rite]
simple-hexedit m[emset]read, write, memset: and may be hexadecimal prefixed with
`0x' or `\x', an octal number prefixed with `0' or decimalread: set to 0 or `all' will print all bytes
write, memset: set to `append' will write data directly after the
end of the filewrite: must be hexadecimal without prefixes (whitespaces are ignored)
write: can be a literal character, escaped control character,
hexadecimal value prefixed with `0x' or `\x', an octal number prefixed
with `0' or a decimal number prefixed with `\'
```