diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/bibunits/bibtexall')
-rw-r--r-- | Master/texmf-dist/doc/latex/bibunits/bibtexall | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/bibunits/bibtexall b/Master/texmf-dist/doc/latex/bibunits/bibtexall new file mode 100644 index 00000000000..225b93d1c2e --- /dev/null +++ b/Master/texmf-dist/doc/latex/bibunits/bibtexall @@ -0,0 +1,17 @@ +#!/bin/bash +# +# Run bibtex on each .aux file in the present directory. +# +# Copyright (C) 2004 Thorsten Hansen +# +# +# This work may be distributed and/or modified under the conditions of +# the LaTeX Project Public License, either version 1.3 of this license +# or any later version. The latest version of this license is in +# http://www.latex-project.org/lppl.txt and version 1.3 or later is +# part of all distributions of LaTeX version 2003/12/01 or +# later. + +for file in *.aux ; do + bibtex `basename $file .aux` +done |