b8ba871bd9
files, curses, db, regex etc that we already have). The other glue will follow shortly. Obtained from: Keith Bostic <bostic@bostic.com>
17 lines
222 B
Awk
17 lines
222 B
Awk
# @(#)merge.awk 8.3 (Berkeley) 5/25/94
|
|
#
|
|
# merge index entries into one line per label
|
|
$1 == prev {
|
|
printf ", %s", $2;
|
|
next;
|
|
}
|
|
{
|
|
if (NR != 1)
|
|
printf "\n";
|
|
printf "%s \t%s", $1, $2;
|
|
prev = $1;
|
|
}
|
|
END {
|
|
printf "\n"
|
|
}
|