https://github.com/cran/lmtest
Raw File
Tip revision: 0d651d69b9fb230cb9564a92085b992b3dbd42d4 authored by Achim Zeileis on 07 August 2006, 00:00:00 UTC
version 0.9-16
Tip revision: 0d651d6
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