docs/diploma

diff thesis/scripts/complete-bibtex.sh @ 372:6477e7827617

added scripts for improved index generation and complete bibtex generation
author meillo@marmaro.de
date Sat, 31 Jan 2009 20:07:58 +0100
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/thesis/scripts/complete-bibtex.sh	Sat Jan 31 20:07:58 2009 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +#!/bin/sh
     1.5 +#
     1.6 +# run bibtex also on the web bib
     1.7 +
     1.8 +echo "complete-bibtex.sh"
     1.9 +echo "@: $@"
    1.10 +
    1.11 +if [ $# -eq 0 ] ; then
    1.12 +	echo "usage: $0 <bibinput> ..."
    1.13 +	exit 1
    1.14 +fi
    1.15 +
    1.16 +for i in "$@" web ; do
    1.17 +	echo "processing $i"
    1.18 +	bibtex "$i"
    1.19 +done