Crates.io | sbyte |
lib.rs | sbyte |
version | 0.3.3 |
source | src |
created_at | 2020-10-12 20:45:28.75649 |
updated_at | 2022-11-02 16:35:20.968221 |
description | Console-based byte editor |
homepage | https://burnsomni.net/software/sbyte/ |
repository | https://burnsomni.net/git/sbyte |
max_upload_size | |
id | 298901 |
size | 259,334 |
An in-console byte editor. Work in progress, but fairly stable for basic work.
The environment was designed to feel and work as much like VIM as is reasonable for a byte editor. (hjkl directional controls, numerical register, a command line with its own pseudo-language as well as modes [visual, insert, append, replace])
cargo install sbyte
sbyte <filename>
cargo install --git https://burnsomni.net/git/sbyte
sbyte <filename>
See sbyterc for basic controls.
Sbyte may be a hex editor, but it's also a bin editor and dec editor. Switch between them on-the-fly
Regex is supported in searches, however some modifications have been made to make it more useful in the context of all bytes rather than just the human-readable ones.
Use a .
to indicate a wildcard within a byte.
This will find all bytes from \x90 to \x9F:
find \x9.
This can also be done in binary:
find \b1001....
and doesn't need to be sequential
find \b100100.0
will match \x90 & \x92