An open API service indexing awesome lists of open source software.

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

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 decimal

read: set to 0 or `all' will print all bytes

write, memset: set to `append' will write data directly after the
end of the file

write: 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 `\'
```