Copying a line from one file to other using vi editor


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Copying a line from one file to other using vi editor
# 1  
Old 10-19-2010
Copying a line from one file to other using vi editor

Hi Guys,

the command ":yy" copies the line but it can be pasted in the same file. How can it be done if I want to copy it in other file.
# 2  
Old 10-19-2010
Example: copy/write line 20 to file named newfile
Code:
:20w newfile

# 3  
Old 10-19-2010
Here ya go

I'm using vi on Solaris. From command mode, name a buffer by using the double quote followed by the buffer name (in this case the letter a). Then follow that with the yank command to yank into the buffer. It looks like this (name a buffer "a" and yank 20 lines into it):
Code:
<ESC>"a20yy

Then, go over to the other file without leaving vi. If you started vi with both filenames as args, just :n to go to the next one. Otherwise, :e <name> to edit the other file. Once there, name your buffer, then what you want to do with it. In this case, "put" the lines from the buffer (name the buffer, then "put" its contents):
Code:
<ESC>"ap

For longer ranges of lines that are not practical to count, go to the bottom of the range you want to copy and use the "mark" command to mark that line (in this case, call the mark "x"):
Code:
<ESC>mx

Then, go to the top of the range you want to copy, name a buffer, and yank lines into the buffer from the current position to the "mark":
Code:
<ESC>"ay'x

Go to the other file and paste the contents of the buffer as mentioned above.


Gary

P.S. Some other tips. You can also:
Code:
<ESC>:r <filename>

to read the contents of filename into the current file, or:
Code:
!!<cmd>

to add the output of the cmd to the file (note no colon).

Last edited by gary_w; 10-19-2010 at 10:59 AM..
This User Gave Thanks to gary_w For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Vi editor Line too Long Error

My file is 13 mb but it has big long lines. i tried in vain vi -R filename I tried in vainbash: vim: command not found SunOS mymac 5.10 Generic_150400-26 sun4v sparc sun4vCan you please suggest? (1 Reply)
Discussion started by: mohtashims
1 Replies

2. Shell Programming and Scripting

Copying characters on each line in a file

Hello, I would like to copy the first and third char on each line of a file and place them in the 14h and 17th char positions. The file name is listed first and is 6 char's and the dir name is second and also same char size on each line. The file has thousands of lines. Initial... (6 Replies)
Discussion started by: dmm
6 Replies

3. Shell Programming and Scripting

copying a line from a file using sed

Hi All, I need to copy a specific line from a file to another file. lets suppose the line number 13 of a file when I am writing the line number explicitly.. its working fine sed -n '13p' afile > anotherfile but, when inside a script, i am getting the line number value inside a variable... (4 Replies)
Discussion started by: gotamp
4 Replies

4. Shell Programming and Scripting

copying the files in vi editor

Hi, For a particular file i used Vi editor to view the content and i have to copy the same , But in the files if have 1000 lines and i have to copy the file contents from 700th to 900th lines But while copying i'm dragging the mouse from top to bottom but i supposed to copy the lines... (8 Replies)
Discussion started by: thelakbe
8 Replies

5. Shell Programming and Scripting

Vi Editor - How to paste the line concatenated with current line

I generally use yy to copy a line and then p to paste the line at end of current line. But is there a way to paste the copied line in concatenation with the current line with out going to next line. (3 Replies)
Discussion started by: paragkalra
3 Replies

6. Shell Programming and Scripting

Copying x words from end of line to specific location in same line

Hello all i know it is pretty hard one but you will manage it all after noticing and calculating i find a rhythm for the file i want to edit to copy the last 12 characters in line but the problem is to add after first 25 characters in same line in other way too copy the last 12 characters... (10 Replies)
Discussion started by: princesasa
10 Replies

7. Shell Programming and Scripting

copying from line N1 to line N2 of a file in a series of files

Dear community, I'm quite a newbie with scripting, I have this problem: I have a file with many lines and I want to copy the lines from 1 to N to file.1, from N+1 to 2N to file.2, and so on up to the end of the file I have tried with something like this (N=43 in this example): awk '{for... (2 Replies)
Discussion started by: paolalup
2 Replies

8. Shell Programming and Scripting

Copying/Extracting from line A to line B

Can any one please help me to copy file content between particualr line numbers. (3 Replies)
Discussion started by: engineer
3 Replies

9. UNIX for Dummies Questions & Answers

How to open file in VI Editor at a specific line?

i have following query e.g i want the VI Editor cursor at line number N instead of 0 while opening the file from unix prompt. vi filename ?????? Can anyone help? (4 Replies)
Discussion started by: skyineyes
4 Replies

10. UNIX for Dummies Questions & Answers

emacs as a line editor

hello, I would like to use emacs as a line editor (I use emacs as editor). I try "set -o emacs" but I have nothing. Thank you for any help (5 Replies)
Discussion started by: annemar
5 Replies
Login or Register to Ask a Question