following two file are
file a file b
110 aab 330 xxl
i want the output like
file a fileb
110 xxl 330 aab
give solution ?
Answers were Sorted based on User's Feedback
Answer / satyaranjan samal
sed 's/aab/xxl' file a ; sed 's/xxl/aab' file b ; cat file
a ; cat file b
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / raja
sed 's/110 aab/110 xxl/' file a
sed 's/330 xxl/330 aab/' file b
| Is This Answer Correct ? | 1 Yes | 0 No |
Is unix is a programming language?
What was unix originally written for?
How to get the nth word of a line in Unix?
Define a single-user system.
Does unix still exist?
Explain kernal and shell?
Is windows unix based?
Is mac a unix system?
What is page fault? Its types?
How to know the present working directory in unix?
Is mac a unix?
How to create a blank file in unix?