Sponsored Content
Full Discussion: asdas
Top Forums UNIX for Advanced & Expert Users asdas Post 302490124 by appualex on Monday 24th of January 2011 03:31:26 AM
Old 01-24-2011
Copy Paste

Hi, I would like to know how can i copy a portion of the file and paste it in another file as follows.
File 1:

Code:
    Hello, a greeting in the English language
    Hi (magazine), teen lifestyle publication
    Hi (kana), Japanese character
    Hi Records, in music, a Memphis soul and rockabilly label
    Hi, mobile phone brand of Dutch company KPN


File 2:

Code:
  12345
  45637678863
  21
  0997636t374387
  5464646

I need to copy the contents of file 2 and add it to file 1 to create a file as follows.

Code:
    Hello, a greeting in the English language 12345
    Hi (magazine), teen lifestyle publication  45637678863
    Hi (kana), Japanese character  21
    Hi Records, in music, a Memphis soul and rockabilly label  0997636t374387
    Hi, mobile phone brand of Dutch company KPN  5464646

I heard some how in VI editor we can copy and paste. But cant find out how!!


Thanks in Advance!!!!

Appu

Last edited by appualex; 01-24-2011 at 04:38 AM..
 
PASTE(1)						    BSD General Commands Manual 						  PASTE(1)

NAME
paste -- merge corresponding or subsequent lines of files SYNOPSIS
paste [-s] [-d list] file ... DESCRIPTION
The paste utility concatenates the corresponding lines of the given input files, replacing all but the last file's newline characters with a single tab character, and writes the resulting lines to standard output. If end-of-file is reached on an input file while other input files still contain data, the file is treated as if it were an endless source of empty lines. The options are as follows: -d list Use one or more of the provided characters to replace the newline characters instead of the default tab. The characters in list are used circularly, i.e., when list is exhausted the first character from list is reused. This continues until a line from the last input file (in default operation) or the last line in each file (using the -s option) is displayed, at which time paste begins selecting characters from the beginning of list again. The following special characters can also be used in list: newline character tab character \ backslash character Empty string (not a null character). Any other character preceded by a backslash is equivalent to the character itself. -s Concatenate all of the lines of each separate input file in command line order. The newline character of every line except the last line in each input file is replaced with the tab character, unless otherwise specified by the -d option. If '-' is specified for one or more of the input files, the standard input is used; standard input is read one line at a time, circularly, for each instance of '-'. EXAMPLES
List the files in the current directory in three columns: ls | paste - - - Combine pairs of lines from a file into single lines: paste -s -d ' ' myfile Number the lines in a file, similar to nl(1): sed = myfile | paste -s -d ' ' - - Create a colon-separated list of directories named bin, suitable for use in the PATH environment variable: find / -name bin -type d | paste -s -d : - DIAGNOSTICS
The paste utility exits 0 on success, and >0 if an error occurs. SEE ALSO
cut(1), lam(1) STANDARDS
The paste utility is expected to be IEEE Std 1003.2 (``POSIX.2'') compatible. HISTORY
A paste command appeared in Version 32V AT&T UNIX. BUGS
Multibyte character delimiters cannot be specified with the -d option. BSD
September 20, 2001 BSD
All times are GMT -4. The time now is 11:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy