Commond Commands in Vim command-line Mode
Edit binary, image and others files in hexadecimal and save the changes:
:%!xxd
- : Enter command-line mode.
- % Matches the whole file as a range.
- ! Filters that range through an external command.
- xxd is the external shell command.
Comments
Post a Comment