- Choosing an Editor
- Starting pico and Dabbling with It
- Saving in pico
- Cutting and Pasting Text Blocks in pico
- Checking Spelling in pico
- Getting Help in pico
- Exiting pico
- Starting vi and Dabbling with It
- Saving in vi
- Adding and Deleting Text in vi
- Importing Files into vi
- Searching and Replacing in vi
- Exiting vi
- Starting emacs and Dabbling with It
- Using emacs Menus to Spell-Check
- Saving in emacs
- Exiting emacs
Importing Files into vi
You can also merge multiple files in vi by reading additional files into the current one, as shown in Figure 4.13. Basically, all this means is that you insert one file into the file you're currently editing.
Figure 4.13 Reading an additional file into the current one can make your editing tasks much easier.
To import files in vi:
vi hairyspider
At the shell prompt, type vi followed by the filename to start vi with, in this case, the hairyspider file.
:r filename
At the point in the file where you want to import text, press , then type :r and the filename you want to read into the file.