Hey ppl
I have two columns with random values. i need to insert the 1st row of the first column with the highest number of the two rows in the first column and vice versa. some thing like this. I'm sorry If my question is unclear...:rolleyes:
In your input file ..you have used delimeter..something like this "..."
so before i proceed with comparing column to make it easy myself...i changed delimeter from "..." to ","
if i understand your question correctly it's very easy
make the first column as one file
sort -u file1 --command to srt the file
make other columns as one file sort -u file2 ---sort the file using the same command
join file1 file2 ---this command joins the unique lines in a same line