5.4 Copying a File into Another FileSometimes you want to copy text or data already entered on the system into the file you are editing. In vi you can read in the contents of another file with the ex command:
: or its abbreviation:
:
This command inserts the contents of
filename
starting on the line after the cursor position in the file.
If you want to specify a line other than the one the cursor's on,
simply type the line number (or other line address) you want before the Let's suppose you are editing the file practice and want to read in a file called data from another directory called /usr/tim . Position the cursor one line above the line where you want the new data inserted, and enter:
: The entire contents of /usr/tim/data are read into practice , beginning below the line with the cursor. To read in the same file and place it after line 185, you would enter:
: Here are other ways to read in a file: |
|