Hack #11-> Join Command
Join command combines lines from two files based on a common field. In the example below, we have two files – employee.txt and salary.txt. Both have employee-id as common field. So, we can use join command to combine the data from these two files using employee-id as shown below. $ cat employee.txt 100 Jason Smith 200 John Doe 300 Sanjay
Read more
You must be logged in to post a comment.