0

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.

nulleight
  • 794
  • 1
  • 5
  • 12

1 Answers1

2

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

Community
  • 1
  • 1