How to view files in binary from bash?

xxd does both binary and hexadecimal.

bin:

xxd -b file

hex:

xxd file

Leave a Comment