summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2020-01-07 16:42:36 +0000
committerKatolaZ <katolaz@freaknet.org>2020-01-07 16:42:36 +0000
commit48aad16544e9f8bccd339463f498c079d1b482c5 (patch)
treeaa251aaa3040c6bbcfdf66a8cfbc0dd001c44688
parentb548254c6348160c48787164efd5eafab6fa988f (diff)
add newline between records in bibsum outputHEADmaster
-rwxr-xr-xbibsum2
1 files changed, 1 insertions, 1 deletions
diff --git a/bibsum b/bibsum
index 253d484..6ffca61 100755
--- a/bibsum
+++ b/bibsum
@@ -25,6 +25,6 @@ while read -r line; do
attrall=$(echo "$line" | cut -f 2-)
attrs=$(echo "$line" | tr '\t' '\n' | sort | grep -aEi "($fields)" | \
tr '\n' '\t' | sed -E 's/\ +/ /g;s/\t+/\t/g')
- printf "%s\t%s}\n" $name $attrs
+ printf "%s\t%s}\n\n" $name $attrs
fi
done