The information of the two files should be redirect to
Third file in such a way that, the third file contain the
information like this.
1st line in third file should be from 1st file
2nd line in Third file should be from 2nd file
3rd line in Third file should be from 1st file
4th line in Third file should be from 2nd file
-
- so on
Answers were Sorted based on User's Feedback
Answer / amol
Unix utility sed can be used serve the purpose
Assuming file1.txt and file2.txt are two input files and
file3.txt is the third file.
Contents of the file1.txt
line 1
line 2
line 3
Contents of the file2.txt
LINE 1
LINE 2
LINE 3
After executing below mentioned command
sed -n -e '{
> R file2.txt
> p
> }' file1.txt > file3.txt
The third file file3.txt will be
line 1
LINE 1
line 2
LINE 2
line 3
LINE 3
| Is This Answer Correct ? | 0 Yes | 3 No |
madhar chod unix ke 10 commands dhang se likh nahi sakta hai
There are three departments A,B and C.Write a query to display the names of all the persons( in departments other than A) who are paid higher than the person receiving the lowest salary in DEPT A
How to know that your remote server is ruing smoothly or not in unix?
What is difference between shell and bash scripting?
How to pass an argument to a script?
Explain about login shell?
What are script files?
what is the difference between cmp and diff commands
What is MUTEX?
What is the difference between a 'thread' and a 'process'?
A file has multiple records each having three 30-bit long fields(field1,field2,field3).There is also a lookup file,LOOK_UP.dat.Now, we need to consider only the last ten digits of field1 and lookup the file LOOK_UP.dat. If there a match then field2 and field3 should replaced with corresponding data from the lookup file. otherwise that particular record,for which there is no match, should be stored in a seperate file.
What are the additional egrep symbols?