This repository has been archived on 2023-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
langue-phundrak-com/clean.sh

17 lines
323 B
Bash
Executable File

#!/bin/sh
if [ $# -eq 0 ]; then
project_root=`pwd`
else
project_root=$1
fi
rm -rf *~ auto _minted* *.tex *.aux *.log *.toc *.out index.pdf headers.pdf headers.html
for filename in *; do
if [[ -d $filename ]]; then
cd $filename
sh $project_root/clean.sh $project_root
cd ..
fi
done