How to quit Vi
Sep 1, 2025Have you ever had the problem of not knowing how to exit VI without restarting your computer? No problem, here’s a very simple solution:
-
- Press ESCAPE on your keyboard
-
- Type the following:
:!kill -9 $(ps ax | grep vi | head -n 1 | cut -d " " -f 1)
-
- Press ENTER on your keyboard
See? It’s not that difficult.
Backā¦