Does anyone know of a way to see file in Hex on Linux so that the view is updated when a file on Disk changes.
Asked
Active
Viewed 687 times
You can use vim. To switch into hex mode type:
:%!xxd
To exit from hex mode hit escape again and type:
:%!xxd -r
Also check out how to edit binary file on the unix systems