summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/multibib/bibtexall
blob: 6a0e58ec474feb7eb26f9ffc09053b6444405b3d (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
#
# Evoke bibtex for each .aux file in the present directory.
#
# Thorsten Hansen, 2003-03-24 

for file in *.aux ; do
  bibtex `basename $file .aux`
done