Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Jan 162010
 

How to view output in Hex

Answer:

Use the hexdump command,

# hexdump test.txt
0000000 6261 0a63
0000004

To display hex+ASCII (Canonical) altogether

# hexdump -C test.txt
00000000  61 62 63 0a                                  |abc.|
00000004

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>