summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/bibunits/bibtexall
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/bibunits/bibtexall')
-rw-r--r--macros/latex/contrib/bibunits/bibtexall17
1 files changed, 17 insertions, 0 deletions
diff --git a/macros/latex/contrib/bibunits/bibtexall b/macros/latex/contrib/bibunits/bibtexall
new file mode 100644
index 0000000000..225b93d1c2
--- /dev/null
+++ b/macros/latex/contrib/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