join

All posts tagged join

Sometimes you need to combine two text files basing on values in specified columns of that files (on the similar way like SQL JOIN operation). In the Linux it can be easily done using join shell command. Let’s take a look on the following example. Suppose we have two files:

$ cat ./file1.txt
1 aa
2 bb
3 cc
4 dd
$ cat ./file2.txt
1 ee
2 ff
3 gg
4 hh

Continue Reading