10.6.09

Merge two columns from two different files

Input file1:

task1
task2
task3
task4


Input file2:

done
done
pending
pending


Desired output:


task1 done
task2 done
task3 pending
task4 pending



This can be accomplished using the following command:
paste file1 file2 > merged

type:
man paste for more info

No comments: