Does any one know how to view a binary file as it is (in 1s and 0s) on unix environment?
You can use...
od -x filename
...and it will display the binary file in Hex format.
You can easily convert this to binary (if you really want to).
Does any one know how to view a binary file as it is (in 1s and 0s) on unix environment?
You can use...
od -x filename
...and it will display the binary file in Hex format.
You can easily convert this to binary (if you really want to).