README 1.2 KB

1234567891011121314151617181920212223242526
  1. tweak (ncurses-based hex editor, with emacs-like keybindings)
  2. Tweak is a hex editor. It allows you to edit a file at very low level,
  3. letting you see the full and exact binary contents of the file. It can
  4. be useful for modifying binary files such as executables, editing disk
  5. or CD images, debugging programs that generate binary file formats
  6. incorrectly, and many other things.
  7. Tweak uses a complex data structure based on B-trees, designed to
  8. make almost all editing operations extremely fast, even when they are
  9. working on huge amounts of data.
  10. Tweak supports insert mode (not particularly useful if you're editing
  11. an executable file or a filesystem image, but can be extremely handy in
  12. other file formats such as PNG).
  13. Cutting, copying and pasting within the file you are editing is
  14. extremely efficient. No matter how big the chunk of data you are moving
  15. around - even if it's a 200Mb section of a CD image - Tweak will always
  16. perform the operation effectively instantly.
  17. Tweak supports lazy loading of the input file: rather than sucking it
  18. all into memory straight away, it simply remembers which parts of the
  19. editing buffer are copies of which parts of the input file and refers
  20. to the file on disk when it needs to.