
join
List of commands for join:
-
join:tldr:331f9 join: Join field3 of file1 with field1 of file2.$ join -1 ${3} -2 ${1} ${file1} ${file2}try on your machineexplain this command
-
join:tldr:6ab80 join: Produce a line for each unpairable line for file1.$ join -a ${1} ${file1} ${file2}try on your machineexplain this command
-
join:tldr:bf12b join: Join two files using a comma (instead of a space) as the field separator.$ join -t ${','} ${file1} ${file2}try on your machineexplain this command
-
join:tldr:ca99f join: Join two files on the first (default) field.$ join ${file1} ${file2}try on your machineexplain this command