docs/diploma

view thesis/scripts/complete-bibtex.sh @ 374:3445852ed736

applied comments by henry atting and jochen roth
author meillo@marmaro.de
date Mon, 02 Feb 2009 12:04:32 +0100
parents
children
line source
1 #!/bin/sh
2 #
3 # run bibtex also on the web bib
5 echo "complete-bibtex.sh"
6 echo "@: $@"
8 if [ $# -eq 0 ] ; then
9 echo "usage: $0 <bibinput> ..."
10 exit 1
11 fi
13 for i in "$@" web ; do
14 echo "processing $i"
15 bibtex "$i"
16 done