From acfd5e98d3a064414306cc237b23950c56a0fe3f Mon Sep 17 00:00:00 2001 From: David Lecompte <3gpp@metani.eu> Date: Sun, 2 Aug 2026 20:07:57 +0200 Subject: [PATCH 1/1] asn1-split.awk does not add new lines --- bin/asn1-split.awk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/asn1-split.awk b/bin/asn1-split.awk index bd675ac..99350f5 100755 --- a/bin/asn1-split.awk +++ b/bin/asn1-split.awk @@ -7,6 +7,9 @@ BEGIN { # A field is a line FS = "\n" + # Do not add new lines when printing + ORS = "" + # Usage explanation if (ARGC != "2") { print "Usage: " ARGV[0] " file.asn" -- 2.47.3