https://github.com/cran/coin
Raw File
Tip revision: 1d1da53d71a24a7cd371709574597ca3332c7d69 authored by Torsten Hothorn on 14 March 2005, 00:00:00 UTC
version 0.2-9
Tip revision: 1d1da53
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

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

exit 0
back to top