https://github.com/cran/lmtest
Raw File
Tip revision: f04d6ad0248ba21a931c00dae9810425a996f10b authored by Achim Zeileis on 27 April 2005, 00:00:00 UTC
version 0.9-11
Tip revision: f04d6ad
cleanup
#!/bin/sh

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 ./tests/*~; do
    rm -f $f
done

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

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

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

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

exit 0
back to top