https://github.com/cran/lmtest
Raw File
Tip revision: 0c38472dc411ed6360eb911149d2dfe1d0b219b2 authored by Achim Zeileis on 28 June 2007, 00:00:00 UTC
version 0.9-20
Tip revision: 0c38472
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