view thesis/scripts/complete-bibtex.sh @ 398:40c2c6810f38

added a list of various stuff, just to store it
author meillo@marmaro.de
date Sat, 07 Feb 2009 22:43:07 +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