-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhexcat.1
53 lines (49 loc) · 824 Bytes
/
hexcat.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
\" SPDX-License-Identifier: MIT
.Dd 2025-02-09
.Dt hexcat 1
.Sh NAME
.Nm hexcat
.Nd A tiny, pretty hex dumper.
.Sh SYNOPSIS
.Nm
.Op Fl ncxvh
.Op Fl o Ar file
.Op Ar file
.Sh DESCRIPTION
.Nm
is an extremely small hex dumper.
.Pp
Explanation of colors:
.Bl -tag -width -indent
.It green
An ASCII printable character.
.It red
A non-printable character.
.It yellow
A whitespace character.
.It blue
Character 255 (hexadecimal: FF).
.It white
Character 0 (hexadecimal: 00).
.El
.Sh OPTIONS
.Pp
Available flags and descriptions:
.Bl -tag -width -indent
.It Fl c
Colorize output.
.It Fl n
Don't colorize output.
.It Fl x
Suppress ASCII output.
.It Fl h
Print help message and exit.
.It Fl v
Print version information and exit.
.It Fl o Op file
The file to write output to.
.El
.Sh SEE ALSO
.Xr cat 1 ,
.Xr hexdump 1 ,
.Xr xxd 1