Vi editor

From Federal Burro of Information
Revision as of 14:44, 12 January 2009 by David (talk | contribs)
Jump to navigationJump to search

edit binary file in vi

:%!xxd

tai64nlocal file in vi

:%!tai64nlocal

set tabs to be the ENGDEV way in vi

in the file:

/* ex: set tabstop=4 expandtab: */

or in ~/.vimrc

set tabstop=4
set expandtab

fancy find replace

convert:

Target[server.Real]: `/usr/local/bin/snmp_mem_usage.pl public 172.23.5.5 real`

to

Target[server.Real]: memTotalSwap.0&memTotalSwap.0:public@172.23.5.129:161::::2 - memAvailSwap.0&memAvailSwap.0:public@172.23.5.129:161::::2

in two (in vi):

%s: `/usr/local/bin/snmp_mem_usage.pl public ::g
%s/:\(.\+\) real`/ memTotalReal.0\&memTotalReal.0:public@\1:161::::2 - memAvailReal.0\&memAvailReal.0:public@\1:161::::2/