
paste
List of commands for paste:
-
paste:tldr:4706a paste: Merge two files side by side, each in its column, using TAB as delimiter.$ paste ${file1} ${file2}try on your machineexplain this command
-
paste:tldr:4fbce paste: Join all the lines into a single line, using TAB as delimiter.$ paste -s ${filename}try on your machineexplain this command
-
paste:tldr:87231 paste: Merge two files side by side, each in its column, using the specified delimiter.$ paste -d ${delimiter} ${file1} ${file2}try on your machineexplain this command
-
paste:tldr:b9e02 paste: Join all the lines into a single line, using the specified delimiter.$ paste -s -d ${delimiter} ${filename}try on your machineexplain this command
-
paste:tldr:dfcaa paste: Merge two files, with lines added alternatively.$ paste -d '\n' ${file1} ${file2}try on your machineexplain this command