combine files and delete duplicates using Linux
I need to combine 3 text files and delete the duplicate records after combining them.  What is the best way to do this using Linux?

Software/Hardware used:
Linux
ASKED: March 2, 2011  8:40 PM
UPDATED: March 3, 2011  4:08 PM

Answer Wiki:
cat file_1 file_2 file_3 >> combined_file sort combined_file | uniq > deduplicated_combined_file for more information: man cat man sort man uniq Good luck
Last Wiki Answer Submitted:  March 3, 2011  4:08 pm  by  petkoa   3,120 pts.
All Answer Wiki Contributors:  petkoa   3,120 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _