Bash – How to view files in binary from bash

bashbinaryshell

I would like to view the contents of a file in the current directory, but in binary from the command line. How can I achieve this?

Best Answer

xxd does both binary and hexadecimal.

bin:

xxd -b file

hex:

xxd file