|
How can I replace multiple lines from different files
Suppose i have two files
file1.txt
Name : Raju
Address:rt8pouououoiu
City:tyretyeuetu
file2.txt
Address :28a
The line "address:28a" in file2 has to get replaced in the address line of file1 ..
The output should be
Name :Raju
Address:28a
city :tyretyeuetu
Please help me on this
|