Last active
August 29, 2015 14:11
-
-
Save dalethedeveloper/cc1f482f5ebdf07ccf26 to your computer and use it in GitHub Desktop.
Revisions
-
dalethedeveloper revised this gist
Dec 13, 2014 . 1 changed file with 9 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,11 @@ # Assumes a tab delimited flat file and the first field being a numeric key BEGIN { FS = OFS = "\t"; p = ""; } # Strategy is to readline, check for key in first field, store to print # on next readline if the next record has a key in first field, otherwise # append our fragmented line to the stored line { sub(/\r/,""); # also scrub those pesky carriage returns if( $1 ~ /^[0-9]+$/ ) { @@ -16,3 +19,6 @@ BEGIN{ p = p " " $0; } } END { print p } -
dalethedeveloper created this gist
Dec 13, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ # Assumes a tab delimited flat file and the first field being a numeric key BEGIN{ FS=OFS="\t"; p=""; } { sub(/\r/,""); # also scrub those pesky carriage returns if( $1 ~ /^[0-9]+$/ ) { if( p != "" ) { sub(/^\s+/,"",p); print p; p = ""; } p = $0 } else { p = p " " $0; } }