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
200
300
400
Jason Smith
John Doe
Sanjay Gupta
Ashok Sharma
$ cat bonus.txt
100
200
300
400
$5,000
$500
$3,000
$1,250
$ join employee.txt bonus.txt
100
200
300
400
Jason Smith $5,000
John Doe $500
Sanjay Gupta $3,000
Ashok Sharma $1,250
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
200
300
400
Jason Smith
John Doe
Sanjay Gupta
Ashok Sharma
$ cat bonus.txt
100
200
300
400
$5,000
$500
$3,000
$1,250
$ join employee.txt bonus.txt
100
200
300
400
Jason Smith $5,000
John Doe $500
Sanjay Gupta $3,000
Ashok Sharma $1,250
No comments:
Post a Comment