https://github.com/cran/coin
Revision e26e4aab1f2cbcce5ebeec97cb71a3c4cb4b56db authored by Torsten Hothorn on 23 July 2007, 00:00:00 UTC, committed by Gabor Csardi on 23 July 2007, 00:00:00 UTC
1 parent 7554a8b
Raw File
Tip revision: e26e4aab1f2cbcce5ebeec97cb71a3c4cb4b56db authored by Torsten Hothorn on 23 July 2007, 00:00:00 UTC
version 0.6-5
Tip revision: e26e4aa
cleanup
#!/bin/sh

for f in ./src/*.*o; do
    rm -f $f
done

for f in ./src/*~; do
    rm -f $f
done

for f in ./R/*~; do
    rm -f $f
done

for f in ./man/*~; do
    rm -f $f
done

for f in *~; do
    rm -f $f
done

for f in .*~; do
    rm -f $f
done

for f in ./tests/*~; do
    rm -f $f
done

for f in ./tests/*.ps; do
    rm -f $f
done

for f in ./inst/doc/*~; do
    rm -f $f
done

for f in ./inst/doc/coin.tex; do
    rm -f $f
done

for f in ./inst/doc/*.log; do
    rm -f $f
done

for f in ./inst/doc/*.out; do
    rm -f $f
done

for f in ./inst/doc/*.bbl; do
    rm -f $f
done

for f in ./inst/doc/*.blg; do
    rm -f $f
done

for f in ./inst/doc/*.brf; do
    rm -f $f
done

for f in ./inst/doc/*.aux; do
    rm -f $f
done


find . -name "DEADJOE" -exec rm -f {} \;

exit 0
back to top