Posts Tagged ‘vi’

Documentation Hex editor – vi?

0 Comments

Open the file as your normally would ( For example, vi mybinary.fil):
To view in hex:
Enter the following from command mode: :%!xxd

To switch back:
Enter the following from command mode: :%!xxd -r

Tags: ,

Documentation How to find a tab character in vi.

0 Comments

To display all the special characters or escape sequences:

: set list

To find the tab character (^I). Hold down control and hit vi.:

/^vi

Tags: , ,