Solution merge two files append two files in Linux
Solution merge two files append two files in Linux
Code:
cat file1 file2 .. fileN > mergedfile
Advance:
If you accept that entries in the resulting file are sorted, you can use uniq to remove duplicates.
Code:
cat file1 file2 | sort | uniq > mergedfile
download file now
Comments
Post a Comment