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 |
What does "bulk loading of a table" mean? Can you describe advantages or disadvantages of using these features?
What is a unix file?
Why unix terminals are called dummy terminals?
What are positional parameters in unix?
Explain how and when a DNS request is solved when a user tries to surf to the site www.abcdeg.in .Assume the user machine uses a local name server and sits on another network other than www.abcdef.in.
What is the ‘nohup’ in unix?
What is unix operating system used for?
How do I search for a file in unix?
In what way the validity fault handler concludes?
What does a pipe(|) do?
What is the full form of unix operating system?
How to print/display the last line of a file in Unix?