How do I edit files on the command line?
|
To edit files on the command line, you can use an editor such as vi. To open the file, run vi /path/to/file Now you see the contents of the file (if there is any. Please note that the file is created if it does not exist yet.). The most important commands in vi are these: Press i to enter the Insert mode. Now you can type in your text. To leave the Insert mode press ESC. To delete the character that is currently under the cursor you must press x (and you must not be in Insert mode because if you are you will insert the character x instead of deleting the character under the cursor). So if you have just opened the file with vi, you can immediately use x to delete characters. If you are in Insert mode you have to leave it first with ESC. If you have made changes and want to save the file, press :x (again you must not be in Insert mode. If you are, press ESC to leave it). If you haven't made any changes, press :q to leave the file (but you must not be in Insert mode). If you have made changes, but want to leave the file without saving the changes, press :q! (but you must not be in Insert mode). Please note that during all these operations you can use your keyboard's arrow keys to navigate the cursor through the text.
|



Recent comments
10 hours 26 min ago
11 hours 26 min ago
15 hours 13 min ago
16 hours 27 min ago
20 hours 3 min ago
1 day 3 hours ago
1 day 12 hours ago
1 day 13 hours ago
2 days 4 hours ago
2 days 7 hours ago