view thesis/scripts/complete-bibtex.sh @ 409:ca763bd8c809 default tip

Added tag final version which I handed in for changeset ee7211546c02
author meillo@marmaro.de
date Wed, 11 Feb 2009 08:55:32 +0100
parents 6477e7827617
children
line wrap: on
line source

#!/bin/sh
#
# run bibtex also on the web bib

echo "complete-bibtex.sh"
echo "@: $@"

if [ $# -eq 0 ] ; then
	echo "usage: $0 <bibinput> ..."
	exit 1
fi

for i in "$@" web ; do
	echo "processing $i"
	bibtex "$i"
done