https://github.com/cran/lmtest
Raw File
Tip revision: ed31b52de60b583abceb379aad63facedaf80c3f authored by Achim Zeileis on 18 January 2005, 00:00:00 UTC
version 0.9-14
Tip revision: ed31b52
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