break.awk: chop trailing white space on lines
This commit is contained in:
parent
8281c67aed
commit
4908152d99
|
|
@ -27,6 +27,7 @@ BEGIN{ quote=0 }
|
|||
|
||||
{
|
||||
pos=0
|
||||
sub(/[ \t]*$/, "") # chop trailing white space
|
||||
if(NF==0) { print ""; next }
|
||||
first = substr($0,1,1)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue