Answers for "delete all in vi"

1

delete all lines in vi

#in command mode
gg #takes you to the first line
dG #deletes all
Posted by: Guest on June-14-2021
0

how to delete all text inside vi

Esc #set the mode
gg #takes you to the first line
dG #deletes all text in vi
Posted by: Guest on March-08-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language