summaryrefslogtreecommitdiff
path: root/bibsum
blob: 8e59e5439ad22d96dd49e3876195ad9ab891e9d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

#
# Print summaries of bibtex entries in tsv format given as input
# showing only the requested fields 
#

if [ $# -lt 1 ]; then 
	printf "Usage: %s <field> [<field>...]\n" $0
	exit 1;
fi

fields=$(echo "$@" | sed -E 's/([a-zA-Z0-9]+)/\1.\*=|/g;s/\ //g')
fields=$(echo "$fields" | sed -E 's/\|$//')

##echo "$fields"

IFS='
'

while read -r line; do
	name=$(echo "$line" | cut -f 1) 
	attrall=$(echo "$line" | cut -f 2-)
	attrs=$(echo "$line" | tr '\t' '\n' | sort | grep -E -ai "($fields)" | tr '\n' '\t' | sed -E 's/\ +/ /g')
	printf "%s\t%s\t}\n" $name $attrs
done