0.1.6 • Published 10 years ago
multijoin v0.1.6
multijoin
npm install -g multijoin
Using BSD (or UNIX) join command to merge multiple CSV files together based on their first column.
file1:
1,a
2,b
3,cfile2:
1,d
2,e
3,ffile3:
1,g
2,h
3,imultijoin file1 file2 file3:
1,a,d,g
2,b,e,h
3,c,f,iCopyright Ryan Marcus, 2016. GPLv3.