User Tools

Site Tools


howtos:combine_three_lines_into_one
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


howtos:combine_three_lines_into_one [02/12/2018 21:34] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +By changing the number "3" to something else you can make combine a different number of lines into one. Here are two examples:
  
 +<code>
 +awk 'ORS=NR%3?",":"\n"' 
 +
 +awk '{if (NR%3) {ORS="";print " "$0} else {ORS="\n";print " "$0}}'
 +
 +</code>
howtos/combine_three_lines_into_one.txt · Last modified: 02/12/2018 21:34 by 127.0.0.1