summaryrefslogtreecommitdiff
path: root/bibsum
blob: 407e6d55cf595a5c934912022d18e14021ac37eb (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]+)/^\[\[:blank:\]\]*\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 -aEi "($fields)" | tr '\n' '\t' | sed -E 's/\ +/ /g')
	printf "%s\t%s\t}\n" $name $attrs
done