Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

vim replace multiple lines

# Replace all instances of foo with bar
:%s/foo/bar/g

# Replace all instances of foo in lines 6 to 10 inclusive with bar
:6,10s/foo/bar/g
 
PREVIOUS NEXT
Tagged: #vim #replace #multiple #lines
ADD COMMENT
Topic
Name
6+8 =