heme(1) - Linux man page
Name
heme - console hex editorSynopsis
heme [ -d, --disable-colors ] [ -c, --config-file CONFIGFILE ] [ -n, --no-backup-files ] [ -h, --help ] [ -v, --version ] fileDescription
Options
- -n, --no-backup-files
- Don't make backup files.
- -c, --config-file CONFIGFILE
- Read configuration from CONFIGFILE. If not given, heme will try to read ~/.hemerc. If that fails, defaults will be used.
- -d, --disable-colors
- Don't use colors.
- -h, --help
- Show all available command line options.
- -v, --version
- Show heme version.
Usage
Keys (all are case-insensitive, except in the ascii mode):- left (right)
- Move to previous (next) byte
- up (down)
- Move to previous (next) line
- <
- Move to beginning of line
- >
- Move to end of line
- page up
- Move 1 page up
- page down
- Move 1 page down
- home
- Move to beginning of file
- end
- Move to end of file
- h
- Display help screen
- j
- Jump to offset
- n (w)
- Search for byte (string)
- r
- Repeat last search
- l
- Fill range with byte
- tab
- Toggle between hex and ascii editing modes
- u
- Undo
- s
- Save file
- q
- Quit
Configuration
Configuration file is expected to reside in ~/.hemerc. The syntax is very simple:# this is a comment
option_1 = value
option_2 = "value 2"
Everything beyond the '#' is considered a comment and is ignored to the end of that line. Supported options are:
- use_colors
- Set this to 1 if you want colors, 0 otherwise (default: 1)
- advance_after_edit
- Set this to 1 if you want to advance to the next byte after editing byte at the current offset (default: 1)
- make_backup_files
- Set this to 1 if you want heme to make backup files, 0 otherwise (default: 1)
- bg_color
- Background color (default: "blue")
- fg_color
- Foreground color (default: "white")
- bg_color_selected
- Background color of selected byte (default: "black")
- fg_color_selected
- Foreground color of selected byte (default: "green")
- bg_color_status
- Background color of status lines (default: "cyan")
- fg_color_status
- Foreground color of status lines (default: "black")
Color names are "black", "red", "green", "yellow", "blue", "magenta", "cyan" and "white".
Example
# This is sample configuration file.advance_after_edit = 0
make_backup_files = 1
use_colors = 1
bg_color = black
fg_color = white
bg_color_selected = green
fg_color_selected = yellow
bg_color_status = blue
fg_color_status = white
Files
- ~/.hemerc
- User's configuration file.
License
heme is distributed under the GNU General Public License. For details see the file COPYING included in the source distribution.Bugs
Some portability problems, probably. Send bug reports to <pokemon@fly.srk.fer.hr>.Authors
- Ivan Stankovic <pokemon@fly.srk.fer.hr>