This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
find . -name '*.aux' -print0 | xargs -0 rm | |
pdflatex report | |
dirs="dir1 dir2 dir3" | |
for dir in $dirs; do | |
for f in $dir/*.aux; do |